Oracle Application Development Framework Model and Business Components Java API Reference 10g Release 3 (10.1.3)
B16005-01


oracle.jbo
Interface VariableManager

All Known Subinterfaces:
VariableValueManager
All Known Implementing Classes:
VariableManagerImpl, VariableValueManagerImpl

public interface VariableManager

Manages named variables.

Since:
JDeveloper 10.1.3

Method Summary
 Variable addVariable(java.lang.String name)
           
 void addVariable(Variable var)
           
 void clearVariables()
           
 Variable findDeclaredVariable(java.lang.String name)
           
 Variable findVariable(java.lang.String name)
           
 int getDeclaredVariableCount()
           
 Variable[] getDeclaredVariables()
           
 java.lang.String getName()
           
 int getVariableCount()
           
 Variable[] getVariables()
           
 java.util.Map getVariablesMap()
          Returns a readonly map of all variables in this manager.
 Variable[] getVariablesOfKind(java.lang.String kind)
           
 VariableManagerOwner getVarMgrOwner()
           
 VariableManager[] getVarMgrParents()
           
 Variable lookupVariable(java.lang.String name)
           
 void mergeVariables(Variable[] vars)
           
 Variable removeVariable(java.lang.String name)
           
 Variable replaceVariable(Variable newVar)
           
 void variableChanged(Variable var)
           

 

Method Detail

getName

public java.lang.String getName()

getVarMgrOwner

public VariableManagerOwner getVarMgrOwner()

getVarMgrParents

public VariableManager[] getVarMgrParents()

getVariables

public Variable[] getVariables()

getVariablesMap

public java.util.Map getVariablesMap()
Returns a readonly map of all variables in this manager.

getVariablesOfKind

public Variable[] getVariablesOfKind(java.lang.String kind)

getVariableCount

public int getVariableCount()

getDeclaredVariables

public Variable[] getDeclaredVariables()

getDeclaredVariableCount

public int getDeclaredVariableCount()

findDeclaredVariable

public Variable findDeclaredVariable(java.lang.String name)

findVariable

public Variable findVariable(java.lang.String name)

lookupVariable

public Variable lookupVariable(java.lang.String name)

addVariable

public void addVariable(Variable var)

addVariable

public Variable addVariable(java.lang.String name)

replaceVariable

public Variable replaceVariable(Variable newVar)

removeVariable

public Variable removeVariable(java.lang.String name)

clearVariables

public void clearVariables()

mergeVariables

public void mergeVariables(Variable[] vars)

variableChanged

public void variableChanged(Variable var)

Oracle Application Development Framework Model and Business Components Java API Reference 10g Release 3 (10.1.3)
B16005-01


Copyright © 1997, 2005, Oracle. All rights reserved.