oracle.jdeveloper.palette
Class PaletteEditor
java.lang.Object
oracle.jdeveloper.palette.PaletteEditor
- All Implemented Interfaces:
- Droppable, Invokable, PaletteEditor
public abstract class PaletteEditor
- extends java.lang.Object
- implements PaletteEditor, Droppable
The PaletteEditor
interface should be
implemented by clients that are interested in adding their own invokable
dialogs to the Component Palette.
By creating your own PaletteEditor, you can tell any item on the palette to
invoke your editor by changing the editor tag in the palette.xml file.
- See Also:
PaletteEditorContext
Method Summary |
void |
dndEvent(boolean dndEvent)
Pass to the owner of a wizard or dialog or other whether a
drag and drop event is occuring. |
boolean |
getDndEvent()
|
java.lang.Object |
getDroppableObject()
If the user wishes to pass back an object to
drop target, do so here. |
void |
setDroppableObject(java.lang.Object obj)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
_insertionObj
public java.lang.Object _insertionObj
_dndEvent
public boolean _dndEvent
PaletteEditor
public PaletteEditor()
dndEvent
public void dndEvent(boolean dndEvent)
- Description copied from interface:
Droppable
- Pass to the owner of a wizard or dialog or other whether a
drag and drop event is occuring.
- Specified by:
dndEvent
in interface Droppable
getDndEvent
public boolean getDndEvent()
setDroppableObject
public void setDroppableObject(java.lang.Object obj)
getDroppableObject
public java.lang.Object getDroppableObject()
- Description copied from interface:
Droppable
- If the user wishes to pass back an object to
drop target, do so here.
- Specified by:
getDroppableObject
in interface Droppable
Copyright © 1997, 2009, Oracle. All rights reserved.