Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

oracle.ide.inspector
Class PropertyDisplayPanelLayout

java.lang.Object
  extended by oracle.ide.inspector.PropertyDisplayPanelLayout

public class PropertyDisplayPanelLayout
extends java.lang.Object

Specifies which properties should be displayed in a PropertyDisplayPanel, and how such properties should be rendered.

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

PropertyDisplayPanelLayout

public PropertyDisplayPanelLayout()
Method Detail

addProperty

public void addProperty(java.lang.String id)
Adds a row with a single property.

Parameters:
id - the id of the property to show in the new row.

addProperties

public void addProperties(java.lang.String... ids)
Adds a row with one or more properties.

Parameters:
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.0)

E13403-08

Copyright © 1997, 2013, Oracle. All rights reserved.