|
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.7.2) E13403-10 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.ide.inspector.PropertyDisplayPanelLayout
public class PropertyDisplayPanelLayout
Specifies which properties should be displayed in a
, and how such properties should be rendered.PropertyDisplayPanel
This layout is similar to the XML layouts in the Property Inspector, in the sense that it displays properties in rows and columns. This layout is a simplified, programmatic version of the XML layouts:
Example:
PropertyDisplayPanelLayout layout = new PropertyDisplayPanelLayout(); layout.addProperty("id"); layout.addProperties("name", "selected");
This layout specifies the property "id" to be rendered in the first row, and the property "name" and "selected" on the second row.
Constructor Summary | |
---|---|
PropertyDisplayPanelLayout() |
Method Summary | |
---|---|
void |
addProperties(java.lang.String... ids) Adds a row with one or more properties. |
void |
addProperty(java.lang.String id) Adds a row with a single property. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PropertyDisplayPanelLayout()
Method Detail |
---|
public void addProperty(java.lang.String id)
id
- the id of the property to show in the new row.public void addProperties(java.lang.String... ids)
ids
- an array containing the ids of the properties to show in the new row.
|
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.7.2) E13403-10 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |