Business Components

oracle.jbo
Interface ComponentObject

All Known Subinterfaces:
ApplicationModule, ViewLink, ViewObject
All Known Implementing Classes:
ComponentObjectImpl

public interface ComponentObject
extends Properties

Provides access to component objects by name.

Components use the definitions in definitions at runtime to create Row objects.

Since:
JDeveloper 3.0

Method Summary
 java.lang.String getDefFullName()
          Retrieves the fully-qualified name of the component's definition.
 java.lang.String getDefName()
          Retrieves the name of the component's definition.
 java.lang.String getFullName()
          Retrieves the fully-qualified name of this component.
 java.lang.String getName()
          Retrieves the name of this component.
 void remove()
          Deletes this component.
 
Methods inherited from interface oracle.jbo.Properties
getProperties, getProperty, refreshProperty
 

Method Detail

getDefName

public java.lang.String getDefName()
Retrieves the name of the component's definition.
Returns:
a class name.

getDefFullName

public java.lang.String getDefFullName()
Retrieves the fully-qualified name of the component's definition.
Returns:
a class name.

getName

public java.lang.String getName()
Retrieves the name of this component.
Returns:
the name of the object.

getFullName

public java.lang.String getFullName()
Retrieves the fully-qualified name of this component.
Returns:
the name of the object.

remove

public void remove()
Deletes this component.

Business Components