C# 클래스 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.
파일 보기 프로젝트 열기: zf321/ESS.FW.Bpm

공개 메소드들

메소드 설명
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.

메소드 상세

Get() 공개 메소드

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
리턴 ESS.FW.Bpm.Engine.Impl.Juel.Tree

TreeStore() 공개 메소드

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