Package com.coswald.jtalker
Interface Initializable
- 
- All Known Implementing Classes:
 CanvasPanel,ColorChooserPanel,JTalkerFrame,JTalkerMenuBar,TCPClient,TCPClientInstance,TCPServer,TextEntryPanel
public interface InitializableDescribes an object that must callinitbefore the object can be used. This interface serves as a tag and a methodology: in order for an object to be used, it must be initialized. However, some work (like waiting for a thread to start) must not be used within the constructor. Therefore, this interface provides a way for an object to say "I can be a placeholder, but I haven't been initialized yet". As such, the constructor of the object MUST NOT call theinitmethod. However, we have no such way of checking this, so please consider this as a methodological coding style.- Since:
 - JTalker0.0.1
 - Version:
 - 0.0.1
 - Author:
 - C. William Oswald
 - See Also:
 init()
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit()Finishes the construction (or initialization) of an object. 
 -