Uses of Class
org.jbpm.pvm.internal.type.Variable

Packages that use Variable
org.jbpm.pvm.internal.history.events   
org.jbpm.pvm.internal.history.model   
org.jbpm.pvm.internal.model default implementation of process execution in ExecutionImpl based on org.jbpm.pvm.internal.model.AtomicOperations Bidirectional relations In this process model thoughout the pvm codebase, there are several bidirectional relations. 
org.jbpm.pvm.internal.type   
org.jbpm.pvm.internal.type.converter implementations of Converter. 
org.jbpm.pvm.internal.type.variable   
 

Uses of Variable in org.jbpm.pvm.internal.history.events
 

Methods in org.jbpm.pvm.internal.history.events that return Variable
 Variable VariableUpdate.getVariable()
           
 Variable VariableCreate.getVariable()
           
 

Constructors in org.jbpm.pvm.internal.history.events with parameters of type Variable
VariableCreate(Variable variable)
           
VariableUpdate(Variable variable)
           
 

Uses of Variable in org.jbpm.pvm.internal.history.model
 

Methods in org.jbpm.pvm.internal.history.model with parameters of type Variable
 void HistoryVariableImpl.updated(Variable variable)
           
 

Constructors in org.jbpm.pvm.internal.history.model with parameters of type Variable
HistoryVariableImpl(HistoryProcessInstanceImpl historyProcessInstance, HistoryTaskImpl historyTask, Variable variable)
           
 

Uses of Variable in org.jbpm.pvm.internal.model
 

Fields in org.jbpm.pvm.internal.model with type parameters of type Variable
protected  java.util.Map<java.lang.String,Variable> ExecutionImpl.systemVariables
           
protected  java.util.Map<java.lang.String,Variable> ScopeInstanceImpl.variables
           
 

Methods in org.jbpm.pvm.internal.model that return Variable
protected  Variable ScopeInstanceImpl.createVariableObject(java.lang.String key, java.lang.Object value, java.lang.String typeName, boolean isHistoryEnabled)
           
 Variable ScopeInstanceImpl.getVariableObject(java.lang.String key)
           
 

Uses of Variable in org.jbpm.pvm.internal.type
 

Methods in org.jbpm.pvm.internal.type with parameters of type Variable
 java.lang.Object Converter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
          converts a given object to its persistable format.
 java.lang.Object Converter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
          reverts a persisted object to its original formResourceName.
 boolean Converter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
          is true if this converter supports the given type, false otherwise.
 

Uses of Variable in org.jbpm.pvm.internal.type.converter
 

Methods in org.jbpm.pvm.internal.type.converter with parameters of type Variable
 java.lang.Object DateToStringConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object DateToLongConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object ByteToLongConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object FloatToDoubleConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object ShortToLongConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object IntegerToLongConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object BooleanToStringConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object FloatToStringConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object DoubleToStringConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object SerializableToBytesConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object CharacterToStringConverter.convert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object DateToStringConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object DateToLongConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object ByteToLongConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object FloatToDoubleConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object ShortToLongConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object IntegerToLongConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object BooleanToStringConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object FloatToStringConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object DoubleToStringConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object SerializableToBytesConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 java.lang.Object CharacterToStringConverter.revert(java.lang.Object o, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean DateToStringConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean DateToLongConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean ByteToLongConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean FloatToDoubleConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean ShortToLongConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean IntegerToLongConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean BooleanToStringConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean FloatToStringConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean DoubleToStringConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean SerializableToBytesConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 boolean CharacterToStringConverter.supports(java.lang.Object value, ScopeInstanceImpl scopeInstance, Variable variable)
           
 

Uses of Variable in org.jbpm.pvm.internal.type.variable
 

Subclasses of Variable in org.jbpm.pvm.internal.type.variable
 class BlobVariable
           
 class ClobVariable
           
 class DateVariable
           
 class DoubleVariable
           
 class HibernateLongVariable
           
 class HibernateStringVariable
           
 class LongVariable
           
 class NullVariable
           
 class StringVariable
           
 class TextVariable
           
 class UnpersistableVariable
          uses the cache in variable instance to store any object without persisting it.
 



Copyright © 2010 JBoss Community. All Rights Reserved.