|
Extension SDK 10.1.3.36.73 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectoracle.ide.model.Node
oracle.ide.layout.Layout
oracle.ide.layout.IdeLayout
IdeLayout class. IdeLayout instances are layouts that can contain other
layouts. For example, the design and debug layouts can contain other
user created SimpleLayouts as their children.
| Constructor Summary | |
protected |
IdeLayout()
|
|
IdeLayout(java.net.URL fileURL,
java.lang.String shortLabel,
ArrayResourceBundle iconBundle,
int iconKey)
|
|
IdeLayout(java.net.URL fileURL,
java.lang.String shortLabel,
javax.swing.Icon icon)
|
| Method Summary | |
boolean |
add(Element element)
Appends a child Element to the end of the
Folder. |
boolean |
canAdd(Element element)
Other classes can call this method to determine whether the given Element can be added to the Folder. |
boolean |
canRemove(Element element)
Other classes can call this method to determine whether the specified Element can be removed from this
Folder. |
protected void |
closeImpl()
Release the data associated with this item |
boolean |
containsChild(Element child)
Returns true if the folder contains the
specified child Element; returns false
otherwise. |
boolean |
equals(java.lang.Object o)
|
protected boolean |
equalsImpl(IdeLayout other)
|
Layout |
findLayout(java.net.URL url)
Find the layout associated with the specified url. |
Layout |
getActiveLayout()
|
java.util.Iterator |
getChildren()
This method is part of the Element interface to
provide a convenient way of getting an Iterator over any
contained child Elements without having to test the
object's type with the instanceof operator or having
to downcast to a more specific type. |
Layout |
getDefaults()
|
javax.swing.Icon |
getIcon()
Returns an Icon that can be shown in association with this
Displayable. |
java.io.InputStream |
getInputStream()
Gets a InputStream that can be used to read the contents
of this object. |
protected java.util.Map |
getLayoutMap()
|
java.lang.String |
getLongLabel()
Returns a long label that can be displayed to the user. |
java.lang.String |
getProperty(java.lang.String key,
java.lang.String defaultValue)
Retrieves the value associated with a property. |
java.lang.String |
getShortLabel()
Returns a short label that can be displayed to the user. |
java.lang.String |
getToolTipText()
Returns the tool tip text to show when the mouse pointer pauses over a UI component that represents this Displayable.
|
boolean |
mayHaveChildren()
This method is part of the Element interface to
provide a convenient way of determining whether an object may
have children without having to test the object's type with the
instanceof operator or having to downcast to a
more specific type. |
protected void |
openImpl()
Open (load) the data associated with this item. |
boolean |
remove(Element element)
Removes the specified child Element. |
void |
removeAll()
Removes all children from the folder. |
java.lang.Object |
removeProperty(java.lang.String key)
Removes the property. |
protected void |
saveImpl()
Force the node to be re-loaded from file. |
protected void |
setActiveLayout(Layout layout)
|
java.lang.Object |
setProperty(java.lang.String key,
java.lang.String value)
Sets the value for a property. |
int |
size()
Returns the current number of children in the folder. |
| Methods inherited from class oracle.ide.layout.Layout |
getName, getOwner, isActive, isTrackedInNodeCache, setActive, setOwner, toString |
| Methods inherited from class oracle.ide.model.Node |
_getReadWriteLockInternal, addNodeListener, addNodeListenerForType, addNodeListenerForTypeHierarchy, attach, close, createSubject, delete, deleteImpl, detach, ensureOpen, equalsImpl, getAttributes, getData, getSubject, getTimestamp, getURL, isDirty, isNew, isOpen, isReadOnly, markDirty, notifyObservers, open, postCloseImpl, refreshTimestamp, removeNodeListener, removeNodeListenerForType, removeNodeListenerForTypeHierarchy, rename, renameImpl, reportOpenException, revert, revertImpl, runWhileSynchronized, save, setOpen, setTimestampDirectly, setURL |
| Methods inherited from class java.lang.Object |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface oracle.ide.model.Element |
getAttributes, getData |
| Methods inherited from interface oracle.ide.model.Displayable |
toString |
| Constructor Detail |
public IdeLayout(java.net.URL fileURL,
java.lang.String shortLabel,
javax.swing.Icon icon)
public IdeLayout(java.net.URL fileURL,
java.lang.String shortLabel,
ArrayResourceBundle iconBundle,
int iconKey)
protected IdeLayout()
| Method Detail |
public java.lang.String getProperty(java.lang.String key,
java.lang.String defaultValue)
PropertyAccess
getProperty in interface PropertyAccesskey - the property key for which a value is desired.defaultValue - the value to return if no value currently
exists.
public java.lang.Object setProperty(java.lang.String key,
java.lang.String value)
PropertyAccess
setProperty in interface PropertyAccesskey - the property key to setvalue - the string value to set
public java.lang.Object removeProperty(java.lang.String key)
PropertyAccess
removeProperty in interface PropertyAccesskey - the property key to remove
public Layout getActiveLayout()
public Layout findLayout(java.net.URL url)
url. If
the url matches the default layout url return it,
otherwise, look in the list of children.
public java.io.InputStream getInputStream()
throws java.io.IOException
InputStream that can be used to read the contents
of this object.
getInputStream in class Nodejava.io.IOException - if a security manager exists and its
checkRead method denies read access.
protected void openImpl()
throws java.io.IOException
openImpl in class Nodejava.io.IOException - if an I/O error occurred while opening
protected void closeImpl()
throws java.io.IOException
closeImpl in class Nodejava.io.IOException - if an I/O error occurred while closing
protected void saveImpl()
throws java.io.IOException
saveImpl in class Nodejava.io.IOException - if an I/O error occurred while savingpublic Layout getDefaults()
public java.lang.String getShortLabel()
DisplayableString is considered
translatable and should therefore be placed in an appropriate
resource file. When possible, the returned label should be
reasonably short enough to show in the navigator or explorer
windows but long enough to clearly identify and distinguish the
Displayable.
getShortLabel in interface DisplayablegetShortLabel in class Layoutpublic javax.swing.Icon getIcon()
DisplayableIcon that can be shown in association with this
Displayable. Typically the icon will be used in a
tree control or list control. Therefore the icon must fit
naturally within the space normally given to items within those
controls. Such icons are usually 16x16 in size or, if there is a
one-pixel transparent padding around the edge, 18x18 in size. It
is strongly recommended that icons returned by this method be
either 16x16 or 18x18 in size. If null is returned,
the control may show a default icon, or it may show no icon,
whichever is appropriate.
getIcon in interface DisplayablegetIcon in class Nodepublic java.lang.String getLongLabel()
DisplayableString is considered translatable
and should therefore be placed in an appropriate resource file.
The long label differs from the short label essentially on length.
Usually the long label will only be shown on-demand and in places
where horizontal space is more available. Examples are the status
bar and tooltips.
getLongLabel in interface DisplayablegetLongLabel in class Nodepublic java.lang.String getToolTipText()
DisplayableDisplayable.
In many cases it may be appropriate for this method to return the
same value as Displayable.getLongLabel().
getToolTipText in interface DisplayablegetToolTipText in class Nodepublic boolean mayHaveChildren()
ElementElement interface to
provide a convenient way of determining whether an object may
have children without having to test the object's type with the
instanceof operator or having to downcast to a
more specific type.
An implementation of Element that represents a leaf
in a tree structure should return false from this
method. An implementation of Element that could
represent a non-leaf in a tree structure should return
true from this method, even if it does not currently
contain any children.
mayHaveChildren in interface ElementmayHaveChildren in class Nodepublic java.util.Iterator getChildren()
ElementElement interface to
provide a convenient way of getting an Iterator over any
contained child Elements without having to test the
object's type with the instanceof operator or having
to downcast to a more specific type.
An implementation of Element that represents a leaf
in a tree structure should return null from this
method. An implementation of Element that could
represent a non-leaf in a tree structure should return either an
Iterator over the child Elements or
null if there are no children.
getChildren in interface ElementgetChildren in class Layoutpublic boolean add(Element element)
FolderElement to the end of the
Folder.
add in interface Folderpublic boolean remove(Element element)
FolderElement. If the child object
appears more than once, only the first instance is removed.
remove in interface Folderelement - The child object to remove.public boolean canRemove(Element element)
FolderElement can be removed from this
Folder.
canRemove in interface Folderelement - the Element that is about to be removed
from this Folder.
true if the specified Element can be
removed from this Folder; false if the
Element cannot be removed.public boolean canAdd(Element element)
FolderElement can be added to the Folder.
canAdd in interface Folderelement - the Element that is about to be added
to this Folder.
true if the specified Element can be
added to this Folder; false if the
Element cannot be added.public boolean containsChild(Element child)
Foldertrue if the folder contains the
specified child Element; returns false
otherwise.
containsChild in interface Folderpublic int size()
Folder
size in interface Folderpublic void removeAll()
Folder
removeAll in interface Folderpublic boolean equals(java.lang.Object o)
protected final boolean equalsImpl(IdeLayout other)
protected void setActiveLayout(Layout layout)
protected java.util.Map getLayoutMap()
|
Extension SDK 10.1.3.36.73 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
Copyright © 1997, 2005, Oracle.All rights reserved.