* <p>
* @return Contact instance
*/
- public Contact doEnterOwnData ();
+ Contact doEnterOwnData ();
/**
* Shutdown this frame
*/
- public void doShutdown ();
+ void doShutdown ();
/**
* Enables main window (frame)
*/
- public void enableMainWindow ();
+ void enableMainWindow ();
/**
* Setups the frame (and starts it). You have to call init() before you can
* <p>
* @throws java.io.IOException If an IO error was found
*/
- public void setupFrame (final Client client) throws IOException;
+ void setupFrame (final Client client) throws IOException;
/**
* Initializes frame
* @throws org.mxchange.jcore.exceptions.FrameAlreadyInitializedException If
* this method has been called twice
*/
- public void init () throws FrameAlreadyInitializedException;
+ void init () throws FrameAlreadyInitializedException;
/**
* Returns field isInitialized. This flag indicates whether this frame has
* <p>
* @return Field isInitialized
*/
- public boolean isInitialized ();
+ boolean isInitialized ();
/**
* Logs any exceptions or errors
* <p>
* @param throwable Throwable
*/
- public void logException (final Throwable throwable);
+ void logException (final Throwable throwable);
/**
* Shuts down application
*/
- public void shutdownApplication ();
+ void shutdownApplication ();
}
* <p>
* @param listener Listener instance
*/
- public void addListDataListener (final ListDataListener listener);
+ void addListDataListener (final ListDataListener listener);
/**
* Adds a TableModel listener instance to the event list.
* <p>
* @param listener Lister instance
*/
- public void addTableModelListener (final TableModelListener listener);
+ void addTableModelListener (final TableModelListener listener);
/**
* Removes given listener
* <p>
* @param listener Listener instance
*/
- public void removeListDataListener (final ListDataListener listener);
+ void removeListDataListener (final ListDataListener listener);
/**
* Removes a TableModel listener instance from the event list.
* <p>
* @param listener Listener instance
*/
- public void removeTableModelListener (final TableModelListener listener);
+ void removeTableModelListener (final TableModelListener listener);
}