Uses of Interface
org.salespointframework.core.Gate

Packages that use Gate
org.salespointframework.core This package contains the central classes of the Framework. 
org.salespointframework.desktop.strategies   
org.salespointframework.desktop.strategies.dataexchangeformsheet Contains the MoveStrategy classes for TwoTableFormSheets
 

Uses of Gate in org.salespointframework.core
 

Classes in org.salespointframework.core that implement Gate
private  class SaleProcess.PrintErrorGate
          The gate that is responsible for printing error messages.
 class UIGate
          A gate at which a FormSheet and/or a MenuSheet can be displayed.
 

Fields in org.salespointframework.core declared as Gate
protected  Gate SaleProcess.m_gCurGate
          The current gate, if any.
protected  Gate GateChangeTransition.m_gTarget
          The target gate.
 

Methods in org.salespointframework.core that return Gate
 Gate SaleProcess.getCommitGate()
          Return the gate to jump to when performing a commit.
 Gate SaleProcess.getCurrentGate()
          Return the gate at which the process currently stands or which it just left.
protected  Gate SaleProcess.getErrorGate(int nErrorNesting)
          Return the gate to jump to when an error occurs.
protected abstract  Gate SaleProcess.getInitialGate()
          Return the initial gate for this process.
 Gate SaleProcess.getLogGate()
          Return the gate that the process must jump to if it wishes to be logged before finishing.
 Gate SaleProcess.getQuitGate()
          Return the gate to jump to when quitting the process.
 Gate SaleProcess.getRollbackGate()
          Return the gate to jump to when performing a rollback.
 Gate SaleProcess.getStopGate()
          Return the last gate that this process should be at.
 Gate Transition.perform(SaleProcess pOwner, User usr)
          Actually perform the transition.
 Gate GateChangeTransition.perform(SaleProcess p, User u)
          Perform the Transition.
 

Constructors in org.salespointframework.core with parameters of type Gate
GateChangeTransition(Gate gTarget)
          Create a new GateChangeTransition.
 

Uses of Gate in org.salespointframework.desktop.strategies
 

Methods in org.salespointframework.desktop.strategies that return Gate
protected  Gate DefaultRemoveCatalogItemStrategy.getCheckGate(SingleTableFormSheet stfs)
          Get the Gate that checks whether the removal is allowed.
protected  Gate AbstractAddCatalogItemStrategy.getCreateCIGate(SingleTableFormSheet stfs)
          Get the first Gate in the sub-process.
protected  Gate AbstractAddCatalogItemStrategy.getEditCIGate(CatalogItem ci, SingleTableFormSheet stfs, Transition tOk)
          Get a Gate at which a newly created CatalogItem can be edited by the user.
 

Uses of Gate in org.salespointframework.desktop.strategies.dataexchangeformsheet
 

Methods in org.salespointframework.desktop.strategies.dataexchangeformsheet that return Gate
protected  Gate CCStrategy.getCheckMoveGate(SaleProcess p, SalesPoint sp, Catalog cSource, Catalog cDest, DataBasket db, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of a sub-process that will move items from one Catalog into another.
protected  Gate CSCSStrategy.getCheckMoveGate(SaleProcess p, SalesPoint sp, CountingStock csSource, CountingStock csDest, DataBasket db, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of a sub-process that will move items from one Stock into another.
protected  Gate SSSSStrategy.getCheckMoveGate(SaleProcess p, SalesPoint sp, StoringStock ssSource, StoringStock ssDest, DataBasket db, StockItem si, DataExchangeFormSheet ttfs)
          Get the first gate of a sub-process that will move items from one Stock into another.
protected  Gate CCStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, Catalog cSource, Catalog cDest, DataBasket db, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate CCSStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, Catalog cSource, CountingStock csDest, DataBasket db, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate CDBStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, Catalog cSource, DataBasket dbDest, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate CSSStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, Catalog cSource, StoringStock ssDest, DataBasket db, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate CSCSStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, CountingStock csSource, CountingStock csDest, DataBasket db, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate CSDBStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, CountingStock csSource, DataBasket dbDest, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate DBCStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, DataBasket dbSource, Catalog cDest, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate DBCSStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, DataBasket dbSource, CountingStock csDest, DataBasketEntry dbe, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate DBSSStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, DataBasket dbSource, StoringStock ssDest, DataBasketEntry dbe, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate SSDBStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, StoringStock ssSource, DataBasket dbDest, StockItem si, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate SSSSStrategy.getCheckMoveToDestGate(SaleProcess p, SalesPoint sp, StoringStock ssSource, StoringStock ssDest, DataBasket db, StockItem si, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the source to the destination.
protected  Gate CCStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, Catalog cSource, Catalog cDest, DataBasket db, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate CCSStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, Catalog cSource, CountingStock csDest, DataBasket db, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate CDBStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, Catalog cSource, DataBasket dbDest, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate CSSStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, Catalog cSource, StoringStock ssDest, DataBasket db, StockItem si, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate CSCSStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, CountingStock csSource, CountingStock csDest, DataBasket db, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate CSDBStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, CountingStock csSource, DataBasket dbDest, DataBasketEntry dbe, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate DBCStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, DataBasket dbSource, Catalog cDest, CatalogItem ci, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate DBCSStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, DataBasket dbSource, CountingStock csDest, CatalogItem ci, int nCount, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate DBSSStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, DataBasket dbSource, StoringStock ssDest, StockItem si, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate SSDBStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, StoringStock ssSource, DataBasket dbDest, DataBasketEntry dbe, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.
protected  Gate SSSSStrategy.getCheckMoveToSourceGate(SaleProcess p, SalesPoint sp, StoringStock ssSource, StoringStock ssDest, DataBasket db, StockItem si, DataExchangeFormSheet ttfs)
          Get the first gate of the sub-process that will move items from the destination to the source.