Fixed another occurence of the PrintListener bug
git-svn-id: https://svn.libreccm.org/ccm/trunk@2986 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
3c678af21f
commit
4dbf93f31d
|
|
@ -115,6 +115,7 @@ public class ItemListPortletEditor extends ObjectListPortletEditor {
|
||||||
|
|
||||||
public void prepare(PrintEvent ev) {
|
public void prepare(PrintEvent ev) {
|
||||||
OptionGroup target = (OptionGroup)ev.getTarget();
|
OptionGroup target = (OptionGroup)ev.getTarget();
|
||||||
|
target.clearOptions();
|
||||||
|
|
||||||
ContentTypeCollection types = ContentType.getRegisteredContentTypes();
|
ContentTypeCollection types = ContentType.getRegisteredContentTypes();
|
||||||
types.addOrder(ContentType.LABEL);
|
types.addOrder(ContentType.LABEL);
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package com.arsdigita.navigation.ui.portlet;
|
package com.arsdigita.navigation.ui.portlet;
|
||||||
|
|
||||||
import com.arsdigita.navigation.portlet.ObjectListPortlet;
|
import com.arsdigita.navigation.portlet.ObjectListPortlet;
|
||||||
|
|
@ -63,7 +62,7 @@ import java.util.Map;
|
||||||
import java.util.TooManyListenersException;
|
import java.util.TooManyListenersException;
|
||||||
|
|
||||||
public class ObjectListPortletEditor extends PortletConfigFormSection {
|
public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
|
|
||||||
private Widget m_baseObjectType;
|
private Widget m_baseObjectType;
|
||||||
private Widget m_restrictedObjectType;
|
private Widget m_restrictedObjectType;
|
||||||
|
|
||||||
|
|
@ -77,41 +76,42 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
private Widget m_count;
|
private Widget m_count;
|
||||||
private Widget m_order;
|
private Widget m_order;
|
||||||
private Widget m_attributes;
|
private Widget m_attributes;
|
||||||
|
|
||||||
public ObjectListPortletEditor(ResourceType resType,
|
public ObjectListPortletEditor(ResourceType resType,
|
||||||
RequestLocal parentAppRL) {
|
RequestLocal parentAppRL) {
|
||||||
super(resType, parentAppRL);
|
super(resType, parentAppRL);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ObjectListPortletEditor(RequestLocal application) {
|
public ObjectListPortletEditor(RequestLocal application) {
|
||||||
super(application);
|
super(application);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void addWidgets() {
|
protected void addWidgets() {
|
||||||
super.addWidgets();
|
super.addWidgets();
|
||||||
|
|
||||||
m_baseObjectType = buildBaseObjectTypeWidget(new StringParameter("baseObjectType"));
|
m_baseObjectType = buildBaseObjectTypeWidget(new StringParameter("baseObjectType"));
|
||||||
m_baseObjectType.addValidationListener(new NotNullValidationListener());
|
m_baseObjectType.addValidationListener(new NotNullValidationListener());
|
||||||
add(new Label("Base object type:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Base object type:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_baseObjectType);
|
add(m_baseObjectType);
|
||||||
|
|
||||||
m_restrictedObjectType = buildRestrictedObjectTypeWidget(new StringParameter("restrictedObjectType"));
|
m_restrictedObjectType = buildRestrictedObjectTypeWidget(new StringParameter(
|
||||||
|
"restrictedObjectType"));
|
||||||
add(new Label("Restricted object type:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Restricted object type:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_restrictedObjectType);
|
add(m_restrictedObjectType);
|
||||||
|
|
||||||
m_filterCategory = new ApplicationCategoryPicker("filterCategory");
|
m_filterCategory = new ApplicationCategoryPicker("filterCategory");
|
||||||
add(new Label("Filter by category:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Filter by category:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_filterCategory);
|
add(m_filterCategory);
|
||||||
|
|
||||||
m_descendCategories = new RadioGroup(new BooleanParameter("descendCategories"));
|
m_descendCategories = new RadioGroup(new BooleanParameter("descendCategories"));
|
||||||
m_descendCategories.addValidationListener(new NotNullValidationListener());
|
m_descendCategories.addValidationListener(new NotNullValidationListener());
|
||||||
m_descendCategories.addOption(new Option(Boolean.TRUE.toString(),
|
m_descendCategories.addOption(new Option(Boolean.TRUE.toString(),
|
||||||
"Yes"));
|
"Yes"));
|
||||||
m_descendCategories.addOption(new Option(Boolean.FALSE.toString(),
|
m_descendCategories.addOption(new Option(Boolean.FALSE.toString(),
|
||||||
"No"));
|
"No"));
|
||||||
add(new Label("Descend categories:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Descend categories:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_descendCategories);
|
add(m_descendCategories);
|
||||||
|
|
||||||
m_checkPermissions = new RadioGroup(new BooleanParameter("checkPermissions"));
|
m_checkPermissions = new RadioGroup(new BooleanParameter("checkPermissions"));
|
||||||
m_checkPermissions.addValidationListener(new NotNullValidationListener());
|
m_checkPermissions.addValidationListener(new NotNullValidationListener());
|
||||||
m_checkPermissions.addOption(new Option(Boolean.TRUE.toString(),
|
m_checkPermissions.addOption(new Option(Boolean.TRUE.toString(),
|
||||||
|
|
@ -120,7 +120,7 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
"No"));
|
"No"));
|
||||||
add(new Label("Check permissions:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Check permissions:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_checkPermissions);
|
add(m_checkPermissions);
|
||||||
|
|
||||||
m_excludeIndexObjects = new RadioGroup(new BooleanParameter("excludeIndexObjects"));
|
m_excludeIndexObjects = new RadioGroup(new BooleanParameter("excludeIndexObjects"));
|
||||||
m_excludeIndexObjects.addValidationListener(new NotNullValidationListener());
|
m_excludeIndexObjects.addValidationListener(new NotNullValidationListener());
|
||||||
m_excludeIndexObjects.addOption(new Option(Boolean.TRUE.toString(),
|
m_excludeIndexObjects.addOption(new Option(Boolean.TRUE.toString(),
|
||||||
|
|
@ -129,12 +129,12 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
"No"));
|
"No"));
|
||||||
add(new Label("Exclude index objects:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Exclude index objects:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_excludeIndexObjects);
|
add(m_excludeIndexObjects);
|
||||||
|
|
||||||
m_count = new TextField(new IntegerParameter("count"));
|
m_count = new TextField(new IntegerParameter("count"));
|
||||||
m_count.addValidationListener(new NotNullValidationListener());
|
m_count.addValidationListener(new NotNullValidationListener());
|
||||||
add(new Label("Max number of objects:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Max number of objects:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_count);
|
add(m_count);
|
||||||
|
|
||||||
m_order = buildOrderWidget(new StringParameter("order"));
|
m_order = buildOrderWidget(new StringParameter("order"));
|
||||||
m_order.addValidationListener(new NotNullValidationListener());
|
m_order.addValidationListener(new NotNullValidationListener());
|
||||||
add(new Label("Sort ordering:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Sort ordering:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
|
|
@ -144,15 +144,15 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
add(new Label("Output attributes:", Label.BOLD), ColumnPanel.RIGHT);
|
add(new Label("Output attributes:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add(m_attributes);
|
add(m_attributes);
|
||||||
|
|
||||||
m_properties = new MultipleSelect( "properties" );
|
m_properties = new MultipleSelect("properties");
|
||||||
add( new Label( "Output properties:", Label.BOLD ), ColumnPanel.RIGHT );
|
add(new Label("Output properties:", Label.BOLD), ColumnPanel.RIGHT);
|
||||||
add( m_properties );
|
add(m_properties);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected PrintListener getBaseObjectTypes() {
|
protected PrintListener getBaseObjectTypes() {
|
||||||
return new ObjectTypePrintListener();
|
return new ObjectTypePrintListener();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Widget buildBaseObjectTypeWidget(ParameterModel param) {
|
private Widget buildBaseObjectTypeWidget(ParameterModel param) {
|
||||||
SingleSelect widget = new SingleSelect(param);
|
SingleSelect widget = new SingleSelect(param);
|
||||||
try {
|
try {
|
||||||
|
|
@ -166,7 +166,7 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
protected PrintListener getRestrictedObjectTypes() {
|
protected PrintListener getRestrictedObjectTypes() {
|
||||||
return new ObjectTypePrintListener();
|
return new ObjectTypePrintListener();
|
||||||
}
|
}
|
||||||
|
|
||||||
private Widget buildRestrictedObjectTypeWidget(ParameterModel param) {
|
private Widget buildRestrictedObjectTypeWidget(ParameterModel param) {
|
||||||
SingleSelect widget = new SingleSelect(param);
|
SingleSelect widget = new SingleSelect(param);
|
||||||
try {
|
try {
|
||||||
|
|
@ -186,17 +186,17 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
}
|
}
|
||||||
|
|
||||||
private class ObjectTypePrintListener implements PrintListener {
|
private class ObjectTypePrintListener implements PrintListener {
|
||||||
|
|
||||||
public void prepare(PrintEvent ev) {
|
public void prepare(PrintEvent ev) {
|
||||||
OptionGroup target = (OptionGroup)ev.getTarget();
|
OptionGroup target = (OptionGroup) ev.getTarget();
|
||||||
target.clearOptions();
|
target.clearOptions();
|
||||||
|
|
||||||
MetadataRoot root = MetadataRoot.getMetadataRoot();
|
MetadataRoot root = MetadataRoot.getMetadataRoot();
|
||||||
Iterator types = root.getObjectTypes().iterator();
|
Iterator types = root.getObjectTypes().iterator();
|
||||||
target.addOption(new Option(null, "--select one--"));
|
target.addOption(new Option(null, "--select one--"));
|
||||||
while (types.hasNext()) {
|
while (types.hasNext()) {
|
||||||
ObjectType type = (ObjectType)types.next();
|
ObjectType type = (ObjectType) types.next();
|
||||||
|
|
||||||
if (!type.isSubtypeOf(ACSObject.BASE_DATA_OBJECT_TYPE)) {
|
if (!type.isSubtypeOf(ACSObject.BASE_DATA_OBJECT_TYPE)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
@ -205,6 +205,7 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
type.getQualifiedName()));
|
type.getQualifiedName()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void initWidgets(PageState state,
|
protected void initWidgets(PageState state,
|
||||||
|
|
@ -213,24 +214,24 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
super.initWidgets(state, portlet);
|
super.initWidgets(state, portlet);
|
||||||
|
|
||||||
Iterator properties = ObjectListPortlet.getRegisteredProperties();
|
Iterator properties = ObjectListPortlet.getRegisteredProperties();
|
||||||
while( properties.hasNext() ) {
|
while (properties.hasNext()) {
|
||||||
Map.Entry entry = (Map.Entry) properties.next();
|
Map.Entry entry = (Map.Entry) properties.next();
|
||||||
String key = entry.getKey().toString();
|
String key = entry.getKey().toString();
|
||||||
String title = ((Object[]) entry.getValue())[0].toString();
|
String title = ((Object[]) entry.getValue())[0].toString();
|
||||||
|
|
||||||
m_properties.addOption( new Option( key, title ), state );
|
m_properties.addOption(new Option(key, title), state);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (portlet != null) {
|
if (portlet != null) {
|
||||||
ObjectListPortlet myportlet = (ObjectListPortlet)portlet;
|
ObjectListPortlet myportlet = (ObjectListPortlet) portlet;
|
||||||
|
|
||||||
m_baseObjectType.setValue(state, myportlet.getBaseObjectType());
|
m_baseObjectType.setValue(state, myportlet.getBaseObjectType());
|
||||||
m_restrictedObjectType.setValue(state, myportlet.getRestrictedObjectType());
|
m_restrictedObjectType.setValue(state, myportlet.getRestrictedObjectType());
|
||||||
|
|
||||||
m_count.setValue(state, new Integer(myportlet.getCount()));
|
m_count.setValue(state, new Integer(myportlet.getCount()));
|
||||||
m_order.setValue(state, myportlet.getOrdering());
|
m_order.setValue(state, myportlet.getOrdering());
|
||||||
m_attributes.setValue(state, myportlet.getAttributes());
|
m_attributes.setValue(state, myportlet.getAttributes());
|
||||||
|
|
||||||
Category cat = myportlet.getFilterCategory();
|
Category cat = myportlet.getFilterCategory();
|
||||||
|
|
||||||
m_filterCategory.setCategory(state, myportlet.getFilterCategory());
|
m_filterCategory.setCategory(state, myportlet.getFilterCategory());
|
||||||
|
|
@ -239,7 +240,7 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
m_checkPermissions.setValue(state, new Boolean(myportlet.isCheckingPermissions()));
|
m_checkPermissions.setValue(state, new Boolean(myportlet.isCheckingPermissions()));
|
||||||
m_excludeIndexObjects.setValue(state, new Boolean(myportlet.isExludingIndexObjects()));
|
m_excludeIndexObjects.setValue(state, new Boolean(myportlet.isExludingIndexObjects()));
|
||||||
|
|
||||||
m_properties.setValue( state, myportlet.getProperties() );
|
m_properties.setValue(state, myportlet.getProperties());
|
||||||
} else {
|
} else {
|
||||||
m_baseObjectType.setValue(state, null);
|
m_baseObjectType.setValue(state, null);
|
||||||
m_restrictedObjectType.setValue(state, null);
|
m_restrictedObjectType.setValue(state, null);
|
||||||
|
|
@ -255,12 +256,12 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
m_excludeIndexObjects.setValue(state, Boolean.TRUE);
|
m_excludeIndexObjects.setValue(state, Boolean.TRUE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void validateWidgets(PageState state,
|
protected void validateWidgets(PageState state,
|
||||||
Portlet portlet)
|
Portlet portlet)
|
||||||
throws FormProcessException {
|
throws FormProcessException {
|
||||||
|
|
||||||
String baseTypeName = (String)m_baseObjectType.getValue(state);
|
String baseTypeName = (String) m_baseObjectType.getValue(state);
|
||||||
ObjectType baseType = MetadataRoot.getMetadataRoot().getObjectType(baseTypeName);
|
ObjectType baseType = MetadataRoot.getMetadataRoot().getObjectType(baseTypeName);
|
||||||
if (baseType == null) {
|
if (baseType == null) {
|
||||||
throw new FormProcessException(
|
throw new FormProcessException(
|
||||||
|
|
@ -269,50 +270,46 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
|
|
||||||
if (!baseType.isSubtypeOf(ACSObject.BASE_DATA_OBJECT_TYPE)) {
|
if (!baseType.isSubtypeOf(ACSObject.BASE_DATA_OBJECT_TYPE)) {
|
||||||
throw new FormProcessException(
|
throw new FormProcessException(
|
||||||
"The type '" + baseTypeName +
|
"The type '" + baseTypeName + "' is not a subtype of '"
|
||||||
"' is not a subtype of '" +
|
+ ACSObject.BASE_DATA_OBJECT_TYPE + "'");
|
||||||
ACSObject.BASE_DATA_OBJECT_TYPE + "'");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String specificTypeName = (String)m_restrictedObjectType.getValue(state);
|
String specificTypeName = (String) m_restrictedObjectType.getValue(state);
|
||||||
ObjectType specificType = null;
|
ObjectType specificType = null;
|
||||||
if (specificTypeName != null &&
|
if (specificTypeName != null && !"".equals(specificTypeName)) {
|
||||||
!"".equals(specificTypeName)) {
|
|
||||||
specificType = MetadataRoot.getMetadataRoot().getObjectType(specificTypeName);
|
specificType = MetadataRoot.getMetadataRoot().getObjectType(specificTypeName);
|
||||||
if (specificType == null) {
|
if (specificType == null) {
|
||||||
throw new FormProcessException(
|
throw new FormProcessException(
|
||||||
"Cannot find object type '" + specificTypeName + "'");
|
"Cannot find object type '" + specificTypeName + "'");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!specificType.isSubtypeOf(baseType)) {
|
if (!specificType.isSubtypeOf(baseType)) {
|
||||||
throw new FormProcessException(
|
throw new FormProcessException(
|
||||||
"The type '" + specificTypeName +
|
"The type '" + specificTypeName + "' is not a subtype of '" + baseTypeName + "'");
|
||||||
"' is not a subtype of '" + baseTypeName + "'");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ObjectType type = specificType == null ?
|
ObjectType type = specificType == null ? baseType : specificType;
|
||||||
baseType : specificType;
|
|
||||||
|
|
||||||
String order = (String)m_order.getValue(state);
|
String order = (String) m_order.getValue(state);
|
||||||
validateFields(type, order);
|
validateFields(type, order);
|
||||||
|
|
||||||
String attr = (String)m_attributes.getValue(state);
|
String attr = (String) m_attributes.getValue(state);
|
||||||
if (attr != null) {
|
if (attr != null) {
|
||||||
validateFields(type, attr);
|
validateFields(type, attr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void validateFields(ObjectType type,
|
private void validateFields(ObjectType type,
|
||||||
String str)
|
String str)
|
||||||
throws FormProcessException {
|
throws FormProcessException {
|
||||||
|
|
||||||
Root root = MetadataRoot.getMetadataRoot().getRoot();
|
Root root = MetadataRoot.getMetadataRoot().getRoot();
|
||||||
com.redhat.persistence.metadata.ObjectType objType =
|
com.redhat.persistence.metadata.ObjectType objType = root.getObjectType(type
|
||||||
root.getObjectType(type.getQualifiedName());
|
.getQualifiedName());
|
||||||
|
|
||||||
String[] fields = StringUtils.split(str, ',');
|
String[] fields = StringUtils.split(str, ',');
|
||||||
for (int i = 0 ; i < fields.length ; i++) {
|
for (int i = 0; i < fields.length; i++) {
|
||||||
String field = fields[i].trim();
|
String field = fields[i].trim();
|
||||||
if (field.endsWith(" desc")) {
|
if (field.endsWith(" desc")) {
|
||||||
field = field.substring(0, field.length() - 5);
|
field = field.substring(0, field.length() - 5);
|
||||||
|
|
@ -326,11 +323,11 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
if (field.indexOf('.') > -1) {
|
if (field.indexOf('.') > -1) {
|
||||||
field = field.substring(0, field.indexOf('.'));
|
field = field.substring(0, field.indexOf('.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!objType.exists(Path.get(field))) {
|
if (!objType.exists(Path.get(field))) {
|
||||||
throw new FormProcessException(
|
throw new FormProcessException(
|
||||||
"The type '" + type.getQualifiedName() +
|
"The type '" + type.getQualifiedName() + "' does not have a property '" + field
|
||||||
"' does not have a property '" + field + "'");
|
+ "'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -339,20 +336,23 @@ public class ObjectListPortletEditor extends PortletConfigFormSection {
|
||||||
Portlet portlet)
|
Portlet portlet)
|
||||||
throws FormProcessException {
|
throws FormProcessException {
|
||||||
super.processWidgets(state, portlet);
|
super.processWidgets(state, portlet);
|
||||||
|
|
||||||
ObjectListPortlet myportlet = (ObjectListPortlet)portlet;
|
|
||||||
|
|
||||||
myportlet.setBaseObjectType((String)m_baseObjectType.getValue(state));
|
|
||||||
myportlet.setRestrictedObjectType((String)m_restrictedObjectType.getValue(state));
|
|
||||||
|
|
||||||
myportlet.setCount(((Integer)m_count.getValue(state)).intValue());
|
ObjectListPortlet myportlet = (ObjectListPortlet) portlet;
|
||||||
myportlet.setOrdering((String)m_order.getValue(state));
|
|
||||||
myportlet.setAttributes((String)m_attributes.getValue(state));
|
myportlet.setBaseObjectType((String) m_baseObjectType.getValue(state));
|
||||||
|
myportlet.setRestrictedObjectType((String) m_restrictedObjectType.getValue(state));
|
||||||
|
|
||||||
|
myportlet.setCount(((Integer) m_count.getValue(state)).intValue());
|
||||||
|
myportlet.setOrdering((String) m_order.getValue(state));
|
||||||
|
myportlet.setAttributes((String) m_attributes.getValue(state));
|
||||||
|
|
||||||
myportlet.setFilterCategory(m_filterCategory.getCategory(state));
|
myportlet.setFilterCategory(m_filterCategory.getCategory(state));
|
||||||
myportlet.setDescendCategories(((Boolean)m_descendCategories.getValue(state)).booleanValue());
|
myportlet.setDescendCategories(((Boolean) m_descendCategories.getValue(state))
|
||||||
myportlet.setCheckPermissions(((Boolean)m_checkPermissions.getValue(state)).booleanValue());
|
.booleanValue());
|
||||||
myportlet.setExcludeIndexObjects(((Boolean)m_excludeIndexObjects.getValue(state)).booleanValue());
|
myportlet.setCheckPermissions(((Boolean) m_checkPermissions.getValue(state)).booleanValue());
|
||||||
myportlet.setProperties( (Object[]) m_properties.getValue( state ) );
|
myportlet.setExcludeIndexObjects(((Boolean) m_excludeIndexObjects.getValue(state))
|
||||||
|
.booleanValue());
|
||||||
|
myportlet.setProperties((Object[]) m_properties.getValue(state));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue