Table of Contents
public class BackupDataSchemeimplements DataScheme {public BackupDataScheme(DataScheme scheme);
public int getLength();
public Sequence getColumns();
public String getName();
public String getMailCondition();
public DataScheme getBackupScheme();
public String getAutoLoadCondition();
public Iterator printTemplates();
}
Methods inherited from java.lang.Object:
clone
, equals
, finalize
, getClass
, hashCode
, notify
, notifyAll
, toString
, wait
Inheritance Path. java.lang.Object-> org.kaiwitte.workbench.data.BackupDataScheme
Synopsis: public String getAutoLoadCondition();
Specified by: Method getAutoLoadCondition in interface DataScheme
Parameters
condition for when the record requires special attention
Returns the condition for records that are build according to this DataScheme
when they shall be automatically loaded to a visible table on
program start. Strict SQL syntax. String types
ARE quoted. E. g.:
status='nicht erledigt'
age<27
status='nicht erledigt' AND age<27
Synopsis: public Sequence getColumns();
Specified by: Method getColumns in interface DataScheme
Parameters
the DataColumns
Returns the DataColumns
.
Synopsis: public int getLength();
Specified by: Method getLength in interface DataScheme
Parameters
the number of DataColumns
Returns the number of DataColumns
.
Synopsis: public String getMailCondition();
Specified by: Method getMailCondition in interface DataScheme
Parameters
condition when a mail is to be sent
Returns the condition for records that are build according to this DataScheme
when a mail is to be sent. String types
are NOT quoted. E. g.: status=erledigt
.
Synopsis: public String getName();
Specified by: Method getName in interface DataScheme
Parameters
the name of this column
Returns the name of this column.