~ubuntu-branches/ubuntu/trusty/cdk/trusty-proposed

« back to all changes in this revision

Viewing changes to src/org/openscience/cdk/dict/Entry.java

  • Committer: Bazaar Package Importer
  • Author(s): Paul Cager
  • Date: 2008-04-09 21:17:53 UTC
  • Revision ID: james.westby@ubuntu.com-20080409211753-46lmjw5z8mx5pd8d
Tags: upstream-1.0.2
ImportĀ upstreamĀ versionĀ 1.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $RCSfile$
 
2
 * $Author: egonw $
 
3
 * $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $
 
4
 * $Revision: 7636 $
 
5
 *
 
6
 * Copyright (C) 2003-2007  The Chemistry Development Kit (CDK) project
 
7
 * 
 
8
 * Contact: cdk-devel@lists.sourceforge.net
 
9
 * 
 
10
 * This program is free software; you can redistribute it and/or
 
11
 * modify it under the terms of the GNU Lesser General Public License
 
12
 * as published by the Free Software Foundation; either version 2.1
 
13
 * of the License, or (at your option) any later version.
 
14
 * All we ask is that proper credit is given for our work, which includes
 
15
 * - but is not limited to - adding the above copyright notice to the beginning
 
16
 * of your source code files, and to any copyright notice that you may distribute
 
17
 * with programs based on this work.
 
18
 * 
 
19
 * This program is distributed in the hope that it will be useful,
 
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
 * GNU Lesser General Public License for more details.
 
23
 * 
 
24
 * You should have received a copy of the GNU Lesser General Public License
 
25
 * along with this program; if not, write to the Free Software
 
26
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 
27
 *
 
28
 */
 
29
package org.openscience.cdk.dict;
 
30
 
 
31
import java.util.Vector;
 
32
 
 
33
/**
 
34
 * Entry in a Dictionary.
 
35
 * 
 
36
 * @author       Egon Willighagen <egonw@users.sf.net>
 
37
 * @cdk.created  2003-08-23
 
38
 * @cdk.keyword  dictionary
 
39
 *
 
40
 * @see          Dictionary
 
41
 */
 
42
public class Entry {
 
43
    
 
44
        private String className;
 
45
    private String label;
 
46
    private String identifier;
 
47
    private Vector descriptorInfo;
 
48
        private String definition;
 
49
        private String description;
 
50
        private Object rawContent;
 
51
    
 
52
    public Entry(String identifier, String term) {
 
53
        this.identifier = identifier.toLowerCase();
 
54
        this.label = term;
 
55
        this.descriptorInfo = new Vector();
 
56
    }
 
57
    
 
58
    public Entry(String identifier) {
 
59
        this(identifier, "");
 
60
    }
 
61
    
 
62
    public Entry() {
 
63
        this("", "");
 
64
    }
 
65
    
 
66
    public void setLabel(String term) {
 
67
        this.label = term;
 
68
    }
 
69
    
 
70
    public String getLabel() {
 
71
        return this.label;
 
72
    }
 
73
    
 
74
    public void setID(String identifier) {
 
75
        this.identifier = identifier.toLowerCase();
 
76
    }
 
77
    
 
78
    public String getID() {
 
79
        return this.identifier;
 
80
    }
 
81
 
 
82
    public String getDefinition() {
 
83
        return this.definition;
 
84
    }
 
85
    
 
86
    public void setDefinition(String definition) {
 
87
        this.definition = definition;
 
88
    }
 
89
    
 
90
    public String getDescription() {
 
91
        return this.description;
 
92
    }
 
93
 
 
94
    public void setDescription(String description) {
 
95
        this.description = description;
 
96
    }
 
97
    
 
98
    public void setDescriptorMetadata(String metadata) {
 
99
        this.descriptorInfo.add( metadata );
 
100
    }
 
101
    
 
102
    public Vector getDescriptorMetadata() {
 
103
        return this.descriptorInfo;
 
104
    }
 
105
    
 
106
    public String toString() {
 
107
        return "Entry[" + getID() + "](" + getLabel() + ")";
 
108
    }
 
109
 
 
110
        /**
 
111
         * @return Returns the rawContent.
 
112
         */
 
113
        public Object getRawContent() {
 
114
                return rawContent;
 
115
        }
 
116
 
 
117
        /**
 
118
         * @param rawContent The rawContent to set.
 
119
         */
 
120
        public void setRawContent(Object rawContent) {
 
121
                this.rawContent = rawContent;
 
122
        }
 
123
 
 
124
        /**
 
125
         * @return Returns the className.
 
126
         */
 
127
        public String getClassName() {
 
128
                return className;
 
129
        }
 
130
 
 
131
        /**
 
132
         * @param className The className to set.
 
133
         */
 
134
        public void setClassName(String className) {
 
135
                this.className = className;
 
136
        }
 
137
}