TPTP 4.6.0 Platform Project
Public API Specification

org.eclipse.hyades.models.common.facades.behavioral
Interface IVariable

All Superinterfaces:
INamedElement
All Known Subinterfaces:
CFGInstance
All Known Implementing Classes:
CFGInstanceImpl

public interface IVariable
extends INamedElement

Tests can have collections of variables. Each variable in a test's collection represents a declared variable within the test, with scope spanning the entire test. Variables in a test suite are in scope for all of the test suite's contained test cases.


Method Summary
 java.lang.String getInitialValue()
           
 java.lang.String getType()
           
 void setInitialValue(java.lang.String initialValue)
          Sets the initial value of the variable
 void setType(java.lang.String type)
          Sets the type of the variable
 
Methods inherited from interface org.eclipse.hyades.models.common.facades.behavioral.INamedElement
getDescription, getId, getName, setDescription, setId, setName
 

Method Detail

getType

java.lang.String getType()
Returns:
the type of the variable

setType

void setType(java.lang.String type)
Sets the type of the variable

Parameters:
type -

getInitialValue

java.lang.String getInitialValue()
Returns:
the initial value of the variable

setInitialValue

void setInitialValue(java.lang.String initialValue)
Sets the initial value of the variable

Parameters:
initialValue -

TPTP 4.6.0 Platform Project
Public API Specification