Author: chris.laprun(a)jboss.com
Date: 2007-06-25 19:46:58 -0400 (Mon, 25 Jun 2007)
New Revision: 7542
Modified:
trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/ControlPropertiesBean.java
Log:
- Added '.' for consistency.
Modified:
trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/ControlPropertiesBean.java
===================================================================
---
trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/ControlPropertiesBean.java 2007-06-25
23:40:29 UTC (rev 7541)
+++
trunk/core-admin/src/main/org/jboss/portal/core/admin/ui/ControlPropertiesBean.java 2007-06-25
23:46:58 UTC (rev 7542)
@@ -22,12 +22,12 @@
package org.jboss.portal.core.admin.ui;
+import org.jboss.portal.core.model.portal.PortalObject;
import org.jboss.portal.core.model.portal.control.ControlConstants;
-import org.jboss.portal.core.model.portal.PortalObject;
import javax.faces.model.SelectItem;
+import java.util.ArrayList;
import java.util.List;
-import java.util.ArrayList;
/**
* @author <a href="mailto:boleslaw dot dawidowicz at redhat anotherdot
com">Boleslaw Dawidowicz</a>
@@ -69,7 +69,7 @@
pageSelectItems = new ArrayList();
pageSelectItems.add(new SelectItem(ControlConstants.IGNORE_CONTROL_VALUE,
"display the default error message."));
pageSelectItems.add(new SelectItem(ControlConstants.HIDE_CONTROL_VALUE,
"remove the resource from page."));
- pageSelectItems.add(new SelectItem(ControlConstants.JSP_CONTROL_VALUE,
"redirect to the specified resource"));
+ pageSelectItems.add(new SelectItem(ControlConstants.JSP_CONTROL_VALUE,
"redirect to the specified resource."));
}
return pageSelectItems;
}
@@ -83,7 +83,7 @@
if (!PropertiesInfo.isControlProperty(name))
{
- throw new IllegalStateException("trying to process non control property:
" + name );
+ throw new IllegalStateException("trying to process non control property:
" + name);
}
PortalObject object = pomgr.getSelectedObject();