void |
DIY.create(DIY diy) |
Calls the script's create function.
|
void |
Handler.create(DIY diy) |
Called when the DIY component is first created.
|
void |
DIY.createBackPainter(DIY diy,
DIYSheet sheet) |
Calls the script's createBackPainter function.
|
void |
Handler.createBackPainter(DIY diy,
DIYSheet sheet) |
Called to set up any objects needed to paint the component's back
face(s).
|
void |
DIY.createFrontPainter(DIY diy,
DIYSheet sheet) |
Calls the script's createFrontPainter function.
|
void |
Handler.createFrontPainter(DIY diy,
DIYSheet sheet) |
Called to set up any objects needed to paint the component's front
face(s).
|
void |
DIY.createInterface(DIY diy,
DIYEditor editor) |
Calls the script's createInterface function.
|
void |
Handler.createInterface(DIY diy,
DIYEditor editor) |
Called to create a user interface that can edit the component.
|
void |
DIY.onClear(DIY diy) |
Calls the script's onClear function.
|
void |
Handler.onClear(DIY diy) |
Called when the user wants to reset the component to a blank state.
|
void |
DIY.onRead(DIY diy,
java.io.ObjectInputStream objectInputStream) |
Calls the script's onRead function.
|
void |
Handler.onRead(DIY diy,
java.io.ObjectInputStream objectInputStream) |
Called when the component is being read from a file, after all regular
content has been loaded.
|
void |
DIY.onWrite(DIY diy,
java.io.ObjectOutputStream objectOutputStream) |
Calls the script's onWrite function.
|
void |
Handler.onWrite(DIY diy,
java.io.ObjectOutputStream objectOutputStream) |
Called when the component is being written to a file, after all regular
content has been saved.
|
void |
DIY.paintBack(java.awt.Graphics2D g,
DIY diy,
DIYSheet sheet) |
Calls the script's paintBack function.
|
void |
Handler.paintBack(java.awt.Graphics2D g,
DIY diy,
DIYSheet sheet) |
Called to paint content on the component's back face(s).
|
void |
DIY.paintFront(java.awt.Graphics2D g,
DIY diy,
DIYSheet sheet) |
Calls the script's paintFront function.
|
void |
Handler.paintFront(java.awt.Graphics2D g,
DIY diy,
DIYSheet sheet) |
Called to paint content on the component's front face(s).
|
void |
DIYEditor.replaceEditedComponent(DIY diy) |
|