Uses of Interface
org.salespointframework.core.Display

Packages that use Display
org.salespointframework.core This package contains the central classes of the Framework. 
org.salespointframework.core.events Event classes for use with the classes in the sale package. 
org.salespointframework.desktop.multiwindow Contains classes for the standard SalesPoint application GUI. 
 

Uses of Display in org.salespointframework.core
 

Classes in org.salespointframework.core that implement Display
 class JDisplayDialog
          A JDialog that can display Form- and MenuSheets.
 class JDisplayFrame
          A JFrame that can display Form- and MenuSheets.
 class NullDisplay
          A dummy display, that cannot display anything.
 

Fields in org.salespointframework.core declared as Display
protected  Display Shop.ProcessHandle.m_d
          The display to be used.
private  Display SalesPoint.m_dDisplay
          The display currently attached to this SalesPoint, if any.
private  Display SalesPoint.m_dStatus
          The status display currently attached to this SalesPoint, if any.
 

Methods in org.salespointframework.core that return Display
 Display SalesPoint.attach(Display d)
           
 Display SalesPoint.attach(Display d, boolean fSetDefaultSheets)
          Attach a new display to the SalesPoint.
protected  Display SalesPoint.attachStatusDisplay(Display dStatus)
          Attach a status display to the SalesPoint.
 Display SalesPoint.detachDisplay()
          Detach the current display.
protected  Display SalesPoint.detachStatusDisplay()
          Detach the current status display.
 Display SalesPoint.getDisplay()
          Return the display of this SalesPoint.
 

Methods in org.salespointframework.core with parameters of type Display
 Display SalesPoint.attach(Display d)
           
 Display SalesPoint.attach(Display d, boolean fSetDefaultSheets)
          Attach a new display to the SalesPoint.
 void SalesPoint.attachLoadedDisplay(Display d)
          Internal communication method called by Shop to attach a display during restoration of the Shop from a stream.
protected  Display SalesPoint.attachStatusDisplay(Display dStatus)
          Attach a status display to the SalesPoint.
protected  void Shop.removeStatusDisplay(Display d)
          Close a status display.
 void Shop.runProcess(SaleProcess p, Display d, User usr, DataBasket db)
          Run a process on the Shop.
 

Constructors in org.salespointframework.core with parameters of type Display
Shop.ProcessHandle(SaleProcess p, Display d, User usr, DataBasket db)
          Create a new ProcessHandle.
 

Uses of Display in org.salespointframework.core.events
 

Constructors in org.salespointframework.core.events with parameters of type Display
FormSheetEvent(Display src, FormSheet fs, boolean fExplicit)
          Create a new FormSheetEvent.
 

Uses of Display in org.salespointframework.desktop.multiwindow
 

Classes in org.salespointframework.desktop.multiwindow that implement Display
 class JInternalDisplay
          A JInternalFrame that can display Form- and MenuSheets.
 class JTabDisplay
          A JPanel that can be used as tab and display Form- and MenuSheets.
 class MultiWindow.DesktopFrame
          This class is actually used by MultiWindow to display SalesPoints in desktop view mode.
 class MultiWindow.DisplayFrame
          This class is actually used by MultiWindow to display SalesPoints in window view mode.
 class MultiWindow.TabbedFrame
          This class is actually used by MultiWindow to display SalesPoints in tabbed view mode.
 

Methods in org.salespointframework.desktop.multiwindow that return Display
private  Display MultiWindow.getInternalFrame(SalesPoint sp)
          Tries to retrieve a DesktopFrame for a given SalesPoint.
 Display MultiWindow.getNewInternalFrame(SalesPoint sp)
          Creates and returns a new DesktopFrame for a SalesPoint.
 Display MultiWindow.getNewTab(SalesPoint sp)
          Creates and returns a new TabbedFame for a SalesPoint.
 Display MultiWindow.getNewWindow(SalesPoint sp)
          Creates and returns a new DisplayFrame for a SalesPoint.
private  Display MultiWindow.getTab(SalesPoint sp)
          Tries to retrieve a TabbedFrame for a given SalesPoint.
private  Display MultiWindow.getWindow(SalesPoint sp)
          Tries to retrieve a DisplayFrame for a given SalesPoint.