BrightSide Workbench Full Report + Source Code
org.turro.menu.ElephantStatusBar Class Reference
Inheritance diagram for org.turro.menu.ElephantStatusBar:
Collaboration diagram for org.turro.menu.ElephantStatusBar:

Public Member Functions

 ElephantStatusBar ()
 
void setMessage (String message)
 
void setUser (HtmlBasedComponent comp)
 
void setCompany (HtmlBasedComponent comp)
 
void setStatus (HtmlBasedComponent comp)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 31 of file ElephantStatusBar.java.

Constructor & Destructor Documentation

◆ ElephantStatusBar()

org.turro.menu.ElephantStatusBar.ElephantStatusBar ( )

Definition at line 36 of file ElephantStatusBar.java.

36  {
37  initiate();
38  }

Member Function Documentation

◆ setCompany()

void org.turro.menu.ElephantStatusBar.setCompany ( HtmlBasedComponent  comp)

Definition at line 52 of file ElephantStatusBar.java.

52  {
53  company.getChildren().clear();
54  if(comp != null) {
55  comp.setStyle(getStyle() + ";white-space:nowrap;");
56  company.appendChild(comp);
57  }
58  }
Here is the caller graph for this function:

◆ setMessage()

void org.turro.menu.ElephantStatusBar.setMessage ( String  message)

Definition at line 40 of file ElephantStatusBar.java.

40  {
41  lmsg.setValue(message);
42  }

◆ setStatus()

void org.turro.menu.ElephantStatusBar.setStatus ( HtmlBasedComponent  comp)

Definition at line 60 of file ElephantStatusBar.java.

60  {
61  status.getChildren().clear();
62  if(comp != null) {
63  comp.setStyle(getStyle() + ";white-space:nowrap;");
64  status.appendChild(comp);
65  }
66  }
Here is the caller graph for this function:

◆ setUser()

void org.turro.menu.ElephantStatusBar.setUser ( HtmlBasedComponent  comp)

Definition at line 44 of file ElephantStatusBar.java.

44  {
45  user.getChildren().clear();
46  if(comp != null) {
47  comp.setStyle(getStyle() + ";white-space:nowrap;");
48  user.appendChild(comp);
49  }
50  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: