C# Class ESS.FW.Bpm.Engine.Impl.Juel.TreeStore

Tree store class. A tree store holds a TreeBuilder and a TreeCache, provided at construction time. The get(String) method is then used to serve expression trees.
Afficher le fichier Open project: zf321/ESS.FW.Bpm

Méthodes publiques

Méthode Description
Get ( string expression ) : ESS.FW.Bpm.Engine.Impl.Juel.Tree

Get a Tree. If a tree for the given expression is present in the cache, it is taken from there; otherwise, the expression string is parsed and the resulting tree is added to the cache.

TreeStore ( TreeBuilder builder, TreeCache cache )

Constructor.

Method Details

Get() public méthode

Get a Tree. If a tree for the given expression is present in the cache, it is taken from there; otherwise, the expression string is parsed and the resulting tree is added to the cache.
public Get ( string expression ) : ESS.FW.Bpm.Engine.Impl.Juel.Tree
expression string expression string
Résultat ESS.FW.Bpm.Engine.Impl.Juel.Tree

TreeStore() public méthode

Constructor.
public TreeStore ( TreeBuilder builder, TreeCache cache )
builder TreeBuilder the tree builder
cache TreeCache the tree cache (may be null)