com.bowstreet.webapp
Interface InitializationProperty


public interface InitializationProperty

Class that represents a Variable Initialization Property


Field Summary
static int INITIALIZATION_TYPE_DEFAULT
           
static int INITIALIZATION_TYPE_VALUE
          Initialization type information for this initialization property eg, whether string values are static vs an indirect reference.
static int INITIALIZATION_TYPE_VALUE_REF
           
 
Method Summary
 int getInitializationType()
          Gets the initialization type of this property.
 java.lang.String getName()
          Get the name of this initialization property
 java.lang.Object getValue()
          Get Object value for this initialization property
 void setInitializationType(int initializationType)
          Sets the initialization type of this property.
 void setName(java.lang.String name)
          Sets the name of this initialization property
 void setValue(java.lang.Object value)
          Sets value for this initialization property
 

Field Detail

INITIALIZATION_TYPE_DEFAULT

static final int INITIALIZATION_TYPE_DEFAULT
See Also:
Constant Field Values

INITIALIZATION_TYPE_VALUE

static final int INITIALIZATION_TYPE_VALUE
Initialization type information for this initialization property eg, whether string values are static vs an indirect reference.

See Also:
Constant Field Values

INITIALIZATION_TYPE_VALUE_REF

static final int INITIALIZATION_TYPE_VALUE_REF
See Also:
Constant Field Values
Method Detail

getInitializationType

int getInitializationType()
Gets the initialization type of this property.

Returns:
The type of this variable.

getName

java.lang.String getName()
Get the name of this initialization property


getValue

java.lang.Object getValue()
Get Object value for this initialization property


setInitializationType

void setInitializationType(int initializationType)
Sets the initialization type of this property. INITIALIZATION_TYPE_VALUE Value(s) of initialization property are constant(s) INITIALIZATION_TYPE_VALUE_REF Value(s) of initialization property are all indirect refs

Parameters:
initializationType - The initialization type of this property.

setName

void setName(java.lang.String name)
Sets the name of this initialization property


setValue

void setValue(java.lang.Object value)
Sets value for this initialization property



Copyright © 2009 IBM. All Rights Reserved.