Uses of Class
com.werken.werkz.Session

Packages that use Session
com.werken.werkz The werkz goal-oriented process framework. 
com.werken.werkz.jelly   
 

Uses of Session in com.werken.werkz
 

Methods in com.werken.werkz with parameters of type Session
 void WerkzProject.attainGoal(java.lang.String name, Session session)
          Attempt to attain the specified goal.
 void WerkzProject.percolateGoal(java.lang.String name, Session session)
          Attempt to percolate the specified goal.
 boolean Goal.isSatisfied(Session session)
          Determine if this Goal has been satisfied for the specified Session.
(package private)  void Goal.attainPrecursors(Session session)
          Attempt to attain this Goal's precursor Goals.
(package private)  void Goal.percolatePostcursors(Session session)
          Attempt to attain this Goal's postcursor Goals.
 void Goal.attain(Session session)
          Attempt to attain this Goal.
 void Goal.percolate(Session session)
          Attempt to percolate this Goal through to its Postcursors.
private  void Goal.fire(Session session)
          Fires pre-goal callbacks, the Goal's action, if need be, and the post-goal callbacks.
 

Uses of Session in com.werken.werkz.jelly
 

Subclasses of Session in com.werken.werkz.jelly
 class JellySession
           
 

Fields in com.werken.werkz.jelly declared as Session
private  Session AttainTag.session
          The goal session.
private  Session AttainGoalTag.session
          The session.
 

Methods in com.werken.werkz.jelly that return Session
 Session AttainTag.getSession()
           
 Session AttainGoalTag.getSession()
          Retrieve the Session to use, if set.
 

Methods in com.werken.werkz.jelly with parameters of type Session
 void AttainGoalTag.setSession(Session session)
          Set the Session to use.