public interface IlpAdapterCustomization
IlpAbstractAdapter
.
The adapter can be configured like this in a CSS file:
Adapter { filter : @+myFilter; } Subobject#myFilter { class: "myFilterClass"; /* Other Bean properties could be added here. */ }
Modifier and Type | Method and Description |
---|---|
String[] |
getExcludedClasses()
Returns the list of business classes whose instances
will not be considered by the adapter.
|
IlpFilter |
getFilter()
Returns the filter used to filter the business objects
who will be represented in the component.
|
IlpFilter getFilter()
Note: This property can be customized using CSS, as illustrated below:
Adapter { filter: @+filterDef; } Subobject#filterDef { ... }
String[] getExcludedClasses()
Note:This property can be customized using CSS, as illustrated below:
Adapter { excludedClasses: "business class A, business class B"; }or
Adapter { excludedClasses[0]: "mypackage.myclass1"; excludedClasses[1]: "mypackage.myclass2"; }
To represent all classes:
Adapter { excludedClasses: ''; }
© Copyright Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.