|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IlpAdapterCustomization
This interface externalizes the properties that can
be configured with cascading style sheets for an
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. */
}
| Method Summary | |
|---|---|
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. |
| Method Detail |
|---|
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: '';
}
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||