📄 portlettypedescriptor.java
字号:
/* * This class was automatically generated with * <a href="http://www.castor.org">Castor 0.9.5.2</a>, using an XML * Schema. * $Id: PortletTypeDescriptor.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.portletcontainer.impl.descriptor;//---------------------------------///- Imported classes and packages -///---------------------------------/import org.exolab.castor.xml.validators.StringValidator;/** * Class PortletTypeDescriptor. * * @version $Revision: 3298 $ $Date: 2004-06-29 07:19:44 -0700 (Tue, 29 Jun 2004) $ */public class PortletTypeDescriptor extends org.exolab.castor.xml.util.XMLClassDescriptorImpl { //--------------------------/ //- Class/Member Variables -/ //--------------------------/ /** * Field nsPrefix */ private java.lang.String nsPrefix; /** * Field nsURI */ private java.lang.String nsURI; /** * Field xmlName */ private java.lang.String xmlName; /** * Field identity */ private org.exolab.castor.xml.XMLFieldDescriptor identity; //----------------/ //- Constructors -/ //----------------/ public PortletTypeDescriptor() { super(); nsURI = "http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"; xmlName = "portletType"; //-- set grouping compositor setCompositorAsSequence(); org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null; org.exolab.castor.xml.XMLFieldHandler handler = null; org.exolab.castor.xml.FieldValidator fieldValidator = null; //-- initialize attribute descriptors //-- _id desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(java.lang.String.class, "_id", "id", org.exolab.castor.xml.NodeType.Attribute); desc.setImmutable(true); handler = (new org.exolab.castor.xml.XMLFieldHandler() { public java.lang.Object getValue(java.lang.Object object) throws IllegalStateException { PortletDefinitionType target = (PortletDefinitionType) object; return target.getId(); } public void setValue(java.lang.Object object, java.lang.Object value) throws IllegalStateException, IllegalArgumentException { try { PortletDefinitionType target = (PortletDefinitionType) object; target.setId((java.lang.String) value); } catch (java.lang.Exception ex) { throw new IllegalStateException(ex.toString()); } } public java.lang.Object newInstance(java.lang.Object parent) { return null; } }); desc.setHandler(handler); addFieldDescriptor(desc); //-- validation code for: _id fieldValidator = new org.exolab.castor.xml.FieldValidator(); { //-- local scope StringValidator typeValidator = new StringValidator(); typeValidator.setWhiteSpace("preserve"); fieldValidator.setValidator(typeValidator); } desc.setValidator(fieldValidator); //-- initialize element descriptors //-- _descriptionList desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.gridsphere.portletcontainer.impl.descriptor.Description.class, "_descriptionList", "description", org.exolab.castor.xml.NodeType.Element); handler = (new org.exolab.castor.xml.XMLFieldHandler() { public java.lang.Object getValue(java.lang.Object object) throws IllegalStateException { PortletDefinitionType target = (PortletDefinitionType) object; return target.getDescription(); } public void setValue(java.lang.Object object, java.lang.Object value) throws IllegalStateException, IllegalArgumentException { try { PortletDefinitionType target = (PortletDefinitionType) object; target.addDescription((org.gridsphere.portletcontainer.impl.descriptor.Description) value); } catch (java.lang.Exception ex) { throw new IllegalStateException(ex.toString()); } } public java.lang.Object newInstance(java.lang.Object parent) { return new org.gridsphere.portletcontainer.impl.descriptor.Description(); } }); desc.setHandler(handler); desc.setNameSpaceURI("http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"); desc.setMultivalued(true); addFieldDescriptor(desc); //-- validation code for: _descriptionList fieldValidator = new org.exolab.castor.xml.FieldValidator(); fieldValidator.setMinOccurs(0); { //-- local scope } desc.setValidator(fieldValidator); //-- _portletName desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.gridsphere.portletcontainer.impl.descriptor.PortletName.class, "_portletName", "portlet-name", org.exolab.castor.xml.NodeType.Element); handler = (new org.exolab.castor.xml.XMLFieldHandler() { public java.lang.Object getValue(java.lang.Object object) throws IllegalStateException { PortletDefinitionType target = (PortletDefinitionType) object; return target.getPortletName(); } public void setValue(java.lang.Object object, java.lang.Object value) throws IllegalStateException, IllegalArgumentException { try { PortletDefinitionType target = (PortletDefinitionType) object; target.setPortletName((org.gridsphere.portletcontainer.impl.descriptor.PortletName) value); } catch (java.lang.Exception ex) { throw new IllegalStateException(ex.toString()); } } public java.lang.Object newInstance(java.lang.Object parent) { return new org.gridsphere.portletcontainer.impl.descriptor.PortletName(); } }); desc.setHandler(handler); desc.setNameSpaceURI("http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"); desc.setRequired(true); desc.setMultivalued(false); addFieldDescriptor(desc); //-- validation code for: _portletName fieldValidator = new org.exolab.castor.xml.FieldValidator(); fieldValidator.setMinOccurs(1); { //-- local scope } desc.setValidator(fieldValidator); //-- _displayNameList desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.gridsphere.portletcontainer.impl.descriptor.DisplayName.class, "_displayNameList", "display-name", org.exolab.castor.xml.NodeType.Element); handler = (new org.exolab.castor.xml.XMLFieldHandler() { public java.lang.Object getValue(java.lang.Object object) throws IllegalStateException { PortletDefinitionType target = (PortletDefinitionType) object; return target.getDisplayName(); } public void setValue(java.lang.Object object, java.lang.Object value) throws IllegalStateException, IllegalArgumentException { try { PortletDefinitionType target = (PortletDefinitionType) object; target.addDisplayName((org.gridsphere.portletcontainer.impl.descriptor.DisplayName) value); } catch (java.lang.Exception ex) { throw new IllegalStateException(ex.toString()); } } public java.lang.Object newInstance(java.lang.Object parent) { return new org.gridsphere.portletcontainer.impl.descriptor.DisplayName(); } }); desc.setHandler(handler); desc.setNameSpaceURI("http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"); desc.setMultivalued(true); addFieldDescriptor(desc); //-- validation code for: _displayNameList fieldValidator = new org.exolab.castor.xml.FieldValidator(); fieldValidator.setMinOccurs(0); { //-- local scope } desc.setValidator(fieldValidator); //-- _portletClass desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(java.lang.String.class, "_portletClass", "portlet-class", org.exolab.castor.xml.NodeType.Element); desc.setImmutable(true); handler = (new org.exolab.castor.xml.XMLFieldHandler() { public java.lang.Object getValue(java.lang.Object object) throws IllegalStateException { PortletDefinitionType target = (PortletDefinitionType) object; return target.getPortletClass(); } public void setValue(java.lang.Object object, java.lang.Object value) throws IllegalStateException, IllegalArgumentException { try { PortletDefinitionType target = (PortletDefinitionType) object; target.setPortletClass((org.gridsphere.portletcontainer.impl.descriptor.PortletClass) value); } catch (java.lang.Exception ex) { throw new IllegalStateException(ex.toString()); } } public java.lang.Object newInstance(java.lang.Object parent) { return null; } }); desc.setHandler(handler); desc.setNameSpaceURI("http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd"); desc.setRequired(true); desc.setMultivalued(false); addFieldDescriptor(desc); //-- validation code for: _portletClass fieldValidator = new org.exolab.castor.xml.FieldValidator(); fieldValidator.setMinOccurs(1); { //-- local scope StringValidator typeValidator = new StringValidator(); typeValidator.setWhiteSpace("collapse"); fieldValidator.setValidator(typeValidator); } desc.setValidator(fieldValidator); //-- _initParamList desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(org.gridsphere.portletcontainer.impl.descriptor.InitParam.class, "_initParamList", "init-param", org.exolab.castor.xml.NodeType.Element); handler = (new org.exolab.castor.xml.XMLFieldHandler() { public java.lang.Object getValue(java.lang.Object object) throws IllegalStateException { PortletDefinitionType target = (PortletDefinitionType) object; return target.getInitParam(); } public void setValue(java.lang.Object object, java.lang.Object value) throws IllegalStateException, IllegalArgumentException { try { PortletDefinitionType target = (PortletDefinitionType) object;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -