vars.knowledgebase.ConceptName |
Known Indirect Subclasses
ConceptNameImpl |
CREATE TABLE CONCEPTNAME (
CONCEPTNAME VARCHAR(50) NOT NULL,
CONCEPTID_FK BIGINT,
AUTHOR VARCHAR(255),
NAMETYPE VARCHAR(10),
ID BIGINT NOT NULL,
CONSTRAINT PK_CONCEPTNAME PRIMARY KEY(ID)
)
GO
CREATE INDEX IDX_CONCEPTNAME_CONCEPTID
ON CONCEPTNAME(CONCEPTID_FK)
GO
CREATE INDEX IDX_CONCEPTNAME2
ON CONCEPTNAME(CONCEPTNAME)
GO
|
SimpleConceptNameBean |
|
|
Class Overview
Description
UML
License
The Monterey Bay Aquarium Research Institute (MBARI) provides this documentation and code "as is", with no warranty, express or implied, of its quality or consistency. It is provided without support and without obligation on the part of MBARI to assist in its use, correction, modification, or enhancement. This information should not be published or distributed to third parties without specific written permission from MBARI.
Copyright 2003 MBARI. MBARI Proprietary Information. All rights reserved.
Constants
public
static
final
String
AUTHOR_UNKNOWN
Used when the author of a conceptname is unknown
Constant Value:
"unknown"
public
static
final
String
NAME_DEFAULT
public
static
final
String
NAME_UNKNOWN
Constant Value:
"unknown"
public
static
final
String
PROP_AUTHOR
public
static
final
String
PROP_CONCEPT
Constant Value:
"concept"
public
static
final
String
PROP_NAME
public
static
final
String
PROP_NAME_TYPE
Constant Value:
"nameType"
Public Methods
public
abstract
String
getAuthor
()
public
abstract
Concept
getConcept
()
public
abstract
String
getName
()
public
abstract
String
getNameType
()
public
abstract
void
setAuthor
(String author)
public
abstract
void
setConcept
(Concept concept)
public
abstract
void
setName
(String name)
public
abstract
void
setNameType
(String nameType)
public
abstract
String
stringValue
()