Klasse SwingStatusBar

Alle implementierten Schnittstellen:
StatusBar, ViewerComponent, ImageObserver, MenuContainer, Serializable, Accessible

public class SwingStatusBar extends JPanel implements StatusBar
Swing implementation of the Statusbar.
Seit:
7.0
Siehe auch:
  • Felddetails

  • Konstruktordetails

    • SwingStatusBar

      public SwingStatusBar(ReportView view)
      Creates a new instance of the StatusBar connected to the given ReportView. This also inititializes the GUI of this status bar.
      Parameter:
      view - ReportView to which this StatusBar is to belong.
      Seit:
      7.0
  • Methodendetails

    • getComponent

      public Component getComponent()
      All public graphical components of the viewer must implement this method, which returns the actual AWT component so that it can be added to containers, etc.
      For example, if you have a "ReportViewer" and would like to add it to your own JFrame, simply call: myFrame.add(viewer.getComponent())
      Angegeben von:
      getComponent in Schnittstelle ViewerComponent
      Gibt zurück:
      Actual AWT component of this object.
      Seit:
      7.0
    • addStateChangeListener

      public void addStateChangeListener(PropertyChangeListener l)
      Adds a PropertyChangeListener to the listener list. The Listener will be informed about all changed status messages of the status bar.
      Angegeben von:
      addStateChangeListener in Schnittstelle StatusBar
      Parameter:
      l - PropertyChangeListener
      Seit:
      7.0
    • removeStateChangeListener

      public void removeStateChangeListener(PropertyChangeListener l)
      Removes a PropertyChangeListener from this progress.
      Angegeben von:
      removeStateChangeListener in Schnittstelle StatusBar
      Parameter:
      l - PropertyChangeListener
      Seit:
      7.0
    • clearInfoMessage

      public void clearInfoMessage()
      Remove the current info message from the StatusBar.Calling this method will bring a status message(if set) back to screen.
      Angegeben von:
      clearInfoMessage in Schnittstelle StatusBar
      Seit:
      7.0
    • clearStatusMessage

      public void clearStatusMessage()
      Remove the current status message from the StatusBar.
      Angegeben von:
      clearStatusMessage in Schnittstelle StatusBar
      Seit:
      7.0
    • getInfoMessage

      public String getInfoMessage()
      Returns the current info message from the statusbar.
      Angegeben von:
      getInfoMessage in Schnittstelle StatusBar
      Gibt zurück:
      Returns the current info message.
      Seit:
      7.0
    • getStatusMessage

      public String getStatusMessage()
      Returns the current status message from the statusbar.
      Angegeben von:
      getStatusMessage in Schnittstelle StatusBar
      Gibt zurück:
      Returns the current status message.
      Seit:
      7.0
    • setInfoMessage

      public void setInfoMessage(String message)
      Sets and shows a info message in this StatusBar. This message will be shown until StatusBar.clearInfoMessage() is called or a new info message is set. A status message cant overwrite an info message and calling StatusBar.clearInfoMessage() will bring the status message (if set) back to screen.
      Angegeben von:
      setInfoMessage in Schnittstelle StatusBar
      Parameter:
      message - The info message to show.
      Seit:
      7.0
    • setStatusMessage

      public void setStatusMessage(String message, boolean isError)
      Sets and shows, if no info message is set, a status message in this StatusBar. This message will be shown until StatusBar.clearStatusMessage() is called or an infor or a new status message is set. If isError is set the message will be displayed as an error (red color).
      Angegeben von:
      setStatusMessage in Schnittstelle StatusBar
      Parameter:
      message - The status message to show.
      isError - If true the status message will be displayed red.
      Seit:
      7.0
    • setStatusIcon

      public void setStatusIcon(Icon icon)
      Displays the specified icon in this Statusbar. Defines the icon this component will display. If the value of icon is null, nothing is displayed.
      Parameter:
      icon - the given icon (null possible)
      Seit:
      10.0