JBframe by OOIT.com

com.ooit.jbframe
Interface JBFrame

All Known Implementing Classes:
JBDefaultFrame

public interface JBFrame

The JBFrame interface represents a managing component for JAVA beans. The JAVA beans are wrapped by JBAdapters.

A JBFrame implementation usually has sub-components such as:

But, the implementation is not limited to such an interpretation.


Method Summary
 void addNode(JBAdapter adapter)
          Add an adapter node to the JBFrame.
 void gotoNode(JBAdapter adapter)
          Go to the node and show the diplay component.
 void removeNode(JBAdapter adapter)
          Remove an adapter node from the JBFrame.
 void writeStatusMessage(java.lang.String message)
          Write a message to the status bar
 

Method Detail

addNode

public void addNode(JBAdapter adapter)
Add an adapter node to the JBFrame.
Parameters:
adapter - the adapter node added to the JBFrame.

removeNode

public void removeNode(JBAdapter adapter)
Remove an adapter node from the JBFrame.
Parameters:
adapter - the adapter node to be removed.

gotoNode

public void gotoNode(JBAdapter adapter)
Go to the node and show the diplay component.
Parameters:
adapter - the adapter node to which is to switch.

writeStatusMessage

public void writeStatusMessage(java.lang.String message)
Write a message to the status bar

JBframe by OOIT.com