lacam.interfaces
Interface Datasource

All Superinterfaces:
Process
All Known Implementing Classes:
DefaultDatasource

public interface Datasource
extends Process

This interface must be imlemented if the class should be able to be added as a datatarget to the system.

Author:
Dimitrij Zub

Field Summary
static java.lang.String DEFAULT_ATTRIBUTE_NAME
          The name of the attribute containing the name of a level, a factor or the design itself
static java.lang.String DEFAULT_ATTRIBUTE_TIMESTAMP
          The name of the attribute containing the timestamp of a level in history
static java.lang.String DEFAULT_ATTRIBUTE_TYPE
          The name of the attribute conatining the type of a factor
static java.lang.String DEFAULT_ATTRIBUTE_VALUE
          The name of the attribute containing the value of a level
static java.lang.String DEFAULT_NODE_NAME_ATTRIBUTE
          The default name of the element in the XML tree, which describes a level of a factor in the design
static java.lang.String DEFAULT_NODE_NAME_AUTHOR
          The default name of the element in the XML tree, which contains the author of the design
static java.lang.String DEFAULT_NODE_NAME_DESCRIPTION
          The default name of the element in the XML tree, which contains the description of the design
static java.lang.String DEFAULT_NODE_NAME_DESIGN
          The default name of the element in the XML tree, which contains the design definition
static java.lang.String DEFAULT_NODE_NAME_FACTOR
          The default name of the element in the XML tree, which describes a factor in the design
static java.lang.String DEFAULT_NODE_NAME_HISTORY
          The default name of the element in the XML tree, which contains the history of the design file
static java.lang.String DEFAULT_NODE_NAME_ROOT
          The default name of the root element of a conjoint design file.
static java.lang.String FACTOR_TYPE_ANTIIDEALPOINT
          The value of a factory type attribute if the type of the factor is 'antiideal point'.
static java.lang.String FACTOR_TYPE_IDEALPOINT
          The value of a factors type attribute if the type of the factor is 'ideal point'.
static java.lang.String FACTOR_TYPE_LINEAR
          The value of a factors type attribute if the type of the factor is 'linear'.
static java.lang.String FACTOR_TYPE_UNKNOWN
          The value of a factors type attribute if the type is 'unknown'
static java.lang.String XPATH_AUTHOR
          The XPath to the node containing the author name of the design
static java.lang.String XPATH_DESCRIPTION
          The XPath to the node containing the description of the design
static java.lang.String XPATH_DESIGN
          The XPath to the design node of the dataset.
static java.lang.String XPATH_DESIGN_ATTRIBUTE
          The XPath to access all level nodes in the design node of the dataset
static java.lang.String XPATH_DESIGN_FACTOR
          The XPath to access all factor nodes in the design node of the dataset
static java.lang.String XPATH_HISTORY
          The XPath to the history node of the dataset.
static java.lang.String XPATH_HISTORY_FACTOR
          The XPath to access all factor nodes in the history node of the dataset
 
Fields inherited from interface lacam.interfaces.Process
ANALYSIS, DATASOURCE, DATATARGET, MODELMANAGER, PARAMKEY_LANGUAGE_PACK, PARAMKEY_PLUGIN_NAME, POSTPROCESS, PREPROCESS, USERINTERFACE
 
Method Summary
 byte[] getData()
          Returns the retrieved data.
 
Methods inherited from interface lacam.interfaces.Process
init, reinit
 

Field Detail

DEFAULT_NODE_NAME_ROOT

public static final java.lang.String DEFAULT_NODE_NAME_ROOT
The default name of the root element of a conjoint design file.

See Also:
Constant Field Values

DEFAULT_NODE_NAME_DESIGN

public static final java.lang.String DEFAULT_NODE_NAME_DESIGN
The default name of the element in the XML tree, which contains the design definition

See Also:
Constant Field Values

DEFAULT_NODE_NAME_HISTORY

public static final java.lang.String DEFAULT_NODE_NAME_HISTORY
The default name of the element in the XML tree, which contains the history of the design file

See Also:
Constant Field Values

DEFAULT_NODE_NAME_FACTOR

public static final java.lang.String DEFAULT_NODE_NAME_FACTOR
The default name of the element in the XML tree, which describes a factor in the design

See Also:
Constant Field Values

DEFAULT_NODE_NAME_ATTRIBUTE

public static final java.lang.String DEFAULT_NODE_NAME_ATTRIBUTE
The default name of the element in the XML tree, which describes a level of a factor in the design

See Also:
Constant Field Values

DEFAULT_NODE_NAME_AUTHOR

public static final java.lang.String DEFAULT_NODE_NAME_AUTHOR
The default name of the element in the XML tree, which contains the author of the design

See Also:
Constant Field Values

DEFAULT_NODE_NAME_DESCRIPTION

public static final java.lang.String DEFAULT_NODE_NAME_DESCRIPTION
The default name of the element in the XML tree, which contains the description of the design

See Also:
Constant Field Values

DEFAULT_ATTRIBUTE_NAME

public static final java.lang.String DEFAULT_ATTRIBUTE_NAME
The name of the attribute containing the name of a level, a factor or the design itself

See Also:
Constant Field Values

DEFAULT_ATTRIBUTE_TYPE

public static final java.lang.String DEFAULT_ATTRIBUTE_TYPE
The name of the attribute conatining the type of a factor

See Also:
Constant Field Values

DEFAULT_ATTRIBUTE_VALUE

public static final java.lang.String DEFAULT_ATTRIBUTE_VALUE
The name of the attribute containing the value of a level

See Also:
Constant Field Values

DEFAULT_ATTRIBUTE_TIMESTAMP

public static final java.lang.String DEFAULT_ATTRIBUTE_TIMESTAMP
The name of the attribute containing the timestamp of a level in history

See Also:
Constant Field Values

FACTOR_TYPE_UNKNOWN

public static final java.lang.String FACTOR_TYPE_UNKNOWN
The value of a factors type attribute if the type is 'unknown'

See Also:
Dictionary.FACTOR_TYPE_MAP, Constant Field Values

FACTOR_TYPE_LINEAR

public static final java.lang.String FACTOR_TYPE_LINEAR
The value of a factors type attribute if the type of the factor is 'linear'.

See Also:
Dictionary.FACTOR_TYPE_MAP, Constant Field Values

FACTOR_TYPE_IDEALPOINT

public static final java.lang.String FACTOR_TYPE_IDEALPOINT
The value of a factors type attribute if the type of the factor is 'ideal point'.

See Also:
Dictionary.FACTOR_TYPE_MAP, Constant Field Values

FACTOR_TYPE_ANTIIDEALPOINT

public static final java.lang.String FACTOR_TYPE_ANTIIDEALPOINT
The value of a factory type attribute if the type of the factor is 'antiideal point'.

See Also:
Dictionary.FACTOR_TYPE_MAP, Constant Field Values

XPATH_DESIGN

public static final java.lang.String XPATH_DESIGN
The XPath to the design node of the dataset.

See Also:
DEFAULT_NODE_NAME_DESIGN, Constant Field Values

XPATH_HISTORY

public static final java.lang.String XPATH_HISTORY
The XPath to the history node of the dataset.

See Also:
DEFAULT_NODE_NAME_HISTORY, Constant Field Values

XPATH_DESIGN_FACTOR

public static final java.lang.String XPATH_DESIGN_FACTOR
The XPath to access all factor nodes in the design node of the dataset

See Also:
DEFAULT_NODE_NAME_FACTOR, Constant Field Values

XPATH_HISTORY_FACTOR

public static final java.lang.String XPATH_HISTORY_FACTOR
The XPath to access all factor nodes in the history node of the dataset

See Also:
DEFAULT_NODE_NAME_FACTOR, Constant Field Values

XPATH_DESIGN_ATTRIBUTE

public static final java.lang.String XPATH_DESIGN_ATTRIBUTE
The XPath to access all level nodes in the design node of the dataset

See Also:
DEFAULT_NODE_NAME_ATTRIBUTE, Constant Field Values

XPATH_AUTHOR

public static final java.lang.String XPATH_AUTHOR
The XPath to the node containing the author name of the design

See Also:
Constant Field Values

XPATH_DESCRIPTION

public static final java.lang.String XPATH_DESCRIPTION
The XPath to the node containing the description of the design

See Also:
Constant Field Values
Method Detail

getData

public byte[] getData()
Returns the retrieved data.