Uses of Class
to.etc.domui.state.ConversationContext

Packages that use ConversationContext
to.etc.domui.dom.html   
to.etc.domui.hibernate.generic   
to.etc.domui.parts   
to.etc.domui.server   
to.etc.domui.state   
 

Uses of ConversationContext in to.etc.domui.dom.html
 

Methods in to.etc.domui.dom.html that return ConversationContext
 ConversationContext Page.getConversation()
           
 ConversationContext Page.internalGetConversation()
           
 

Methods in to.etc.domui.dom.html with parameters of type ConversationContext
 void Page.internalInitialize(PageParameters pp, ConversationContext cc)
          Assign required data to the page.
 

Uses of ConversationContext in to.etc.domui.hibernate.generic
 

Methods in to.etc.domui.hibernate.generic with parameters of type ConversationContext
 void HibernateLongSessionContext.conversationAttached(ConversationContext cc)
           
 void BuggyHibernateBaseContext.conversationAttached(ConversationContext cc)
          
 void HibernateReattachingDataContext.conversationDestroyed(ConversationContext cc)
           
 void HibernateLongSessionContext.conversationDestroyed(ConversationContext cc)
           
 void BuggyHibernateBaseContext.conversationDestroyed(ConversationContext cc)
          
 void HibernateReattachingDataContext.conversationDetached(ConversationContext cc)
           
 void HibernateLongSessionContext.conversationDetached(ConversationContext cc)
           
 void BuggyHibernateBaseContext.conversationDetached(ConversationContext cc)
          
 void HibernateLongSessionContext.conversationNew(ConversationContext cc)
           
 void BuggyHibernateBaseContext.conversationNew(ConversationContext cc)
          
 

Uses of ConversationContext in to.etc.domui.parts
 

Methods in to.etc.domui.parts that return ConversationContext
 ConversationContext ComponentPartRenderer.getConversation()
           
 

Uses of ConversationContext in to.etc.domui.server
 

Methods in to.etc.domui.server with parameters of type ConversationContext
 void IDomUIStateListener.conversationCreated(ConversationContext cc)
           
 void IDomUIStateListener.conversationDestroyed(ConversationContext cc)
           
 void DomApplication.internalCallConversationCreated(ConversationContext ws)
           
 void DomApplication.internalCallConversationDestroyed(ConversationContext ws)
           
 

Uses of ConversationContext in to.etc.domui.state
 

Subclasses of ConversationContext in to.etc.domui.state
 class SimpleConversationContext
           
 

Methods in to.etc.domui.state that return ConversationContext
 ConversationContext WindowSession.createConversation(IRequestContext ctx, java.lang.Class<? extends ConversationContext> clz)
           
static ConversationContext UIContext.getCurrentConversation()
           
 ConversationContext WindowSession.getTargetConversation()
           
 

Methods in to.etc.domui.state that return types with arguments of type ConversationContext
static java.lang.Class<? extends ConversationContext> PageMaker.getConversationType(java.lang.reflect.Constructor<? extends UrlPage> clz)
          From a page constructor, get the Conversation class to use.
 java.lang.Class<? extends ConversationContext> WindowSession.getTargetConversationClass()
           
 

Methods in to.etc.domui.state with parameters of type ConversationContext
 void WindowSession.acceptNewConversation(ConversationContext cc)
           
 void IConversationStateListener.conversationAttached(ConversationContext cc)
           
 void IConversationStateListener.conversationDestroyed(ConversationContext cc)
           
 void IConversationStateListener.conversationDetached(ConversationContext cc)
           
 void IConversationStateListener.conversationNew(ConversationContext cc)
           
protected  void WindowSession.destroyConversation(ConversationContext cc)
           
 void WindowSession.internalSetNextPage(MoveMode m, java.lang.Class<? extends UrlPage> clz, ConversationContext cc, java.lang.Class<? extends ConversationContext> ccclz, PageParameters pp)
           
static void UIGoto.moveSub(java.lang.Class<? extends UrlPage> clz, ConversationContext cc, PageParameters pp)
          Push (shelve) the current page, then move to a new page.
 

Method parameters in to.etc.domui.state with type arguments of type ConversationContext
 ConversationContext WindowSession.createConversation(IRequestContext ctx, java.lang.Class<? extends ConversationContext> clz)
           
static
<T extends UrlPage>
java.lang.reflect.Constructor<T>
PageMaker.getPageConstructor(java.lang.Class<T> clz, java.lang.Class<? extends ConversationContext> ccclz, boolean hasparam)
          Finds the best constructor to use for the given page and the given conversation context.
 void WindowSession.internalSetNextPage(MoveMode m, java.lang.Class<? extends UrlPage> clz, ConversationContext cc, java.lang.Class<? extends ConversationContext> ccclz, PageParameters pp)
           
 

Constructors in to.etc.domui.state with parameters of type ConversationContext
DelayedActivitiesManager(ConversationContext conversation)