A scheme that combines related org.kaiwitte.workbench.data.DataScheme
s.
E. g. a repair request (primary DataScheme
) is made by a customer (secondary DataScheme
).
public interface MetaScheme {public int getLength();
public DataColumn getColumns();
public DataScheme getDataSchemes();
public String getName();
}
Inheritance Path. org.kaiwitte.workbench.data.MetaScheme
Synopsis: public DataColumn[] getColumns();
Parameters
Returns the org.kaiwitte.workbench.data.DataColumn
s.
Synopsis: public DataScheme[] getDataSchemes();
Parameters
the associated org.kaiwitte.workbench.data.DataScheme
s
Returns the associated org.kaiwitte.workbench.data.DataScheme
s. The primary one
(e. g. repair requests) is the first one in the array.
Synopsis: public int getLength();
Parameters
the length
Returns the length (number of org.kaiwitte.workbench.data.DataColumn
s).
Synopsis: public String getName();
Parameters
the name
Returns the name of the primary org.kaiwitte.workbench.data.DataScheme