All Packages Class Hierarchy This Package Previous Next Index
Interface aid.cbr.tools.core.memory.casebase.CaseBaseMetadata
- public interface CaseBaseMetadata
Defines the interface of metadata about case bases.
- Version:
- $Revision$, $Date$
- Author:
- M. Jaczynski
-
getAuthor()
- Returns the author name of a case base.
-
getCreationDate()
- Returns the creation date of the case base.
-
getDescription()
- Returns the description of a case base
-
getFormat()
- Returns the name of the format used to store the case base.
-
setAuthor(String)
- Sets
-
setCreationDate(long)
- Sets the creation date of the case base.
-
setDescription(String)
- Sets the description of a case base
-
setFormat(String)
- Sets the name of the format used to store the case base.
getAuthor
public abstract String getAuthor()
- Returns the author name of a case base.
- Returns:
- the author name
setAuthor
public abstract void setAuthor(String author)
- Sets
getDescription
public abstract String getDescription()
- Returns the description of a case base
setDescription
public abstract void setDescription(String description)
- Sets the description of a case base
- Parameters:
- description - the description text
getCreationDate
public abstract long getCreationDate()
- Returns the creation date of the case base.
setCreationDate
public abstract void setCreationDate(long creationDate)
- Sets the creation date of the case base.
- Parameters:
- creationDate - the creation date of the case base.
getFormat
public abstract String getFormat()
- Returns the name of the format used to store the case base.
setFormat
public abstract void setFormat(String format)
- Sets the name of the format used to store the case base.
- Parameters:
- format - the name of the format used to store the case base.
All Packages Class Hierarchy This Package Previous Next Index