⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 includedescriptor.java

📁 CRM源码This file describes some issues that should be implemented in future and how it should be imple
💻 JAVA
字号:
/* * Copyright 2006-2007 Queplix Corp. * * Licensed under the Queplix Public License, Version 1.1.1 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.queplix.com/solutions/commercial-open-source/queplix-public-license/ * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. *//* * This class was automatically generated with  * <a href="http://www.castor.org">Castor 0.9.7</a>, using an XML * Schema. * $Id$ */package com.queplix.core.modules.web.jxb;  //---------------------------------/ //- Imported classes and packages -///---------------------------------/import org.exolab.castor.xml.validators.StringValidator;/** * Class IncludeDescriptor. *  * @version $Revision$ $Date$ */public class IncludeDescriptor 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 IncludeDescriptor()      {        super();        xmlName = "include";        org.exolab.castor.xml.util.XMLFieldDescriptorImpl  desc           = null;        org.exolab.castor.mapping.FieldHandler             handler        = null;        org.exolab.castor.xml.FieldValidator               fieldValidator = null;        //-- initialize attribute descriptors                //-- _src        desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(java.lang.String.class, "_src", "src", 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            {                Include target = (Include) object;                return target.getSrc();            }            public void setValue( java.lang.Object object, java.lang.Object value)                 throws IllegalStateException, IllegalArgumentException            {                try {                    Include target = (Include) object;                    target.setSrc( (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);        desc.setMultivalued(false);        addFieldDescriptor(desc);                //-- validation code for: _src        fieldValidator = new org.exolab.castor.xml.FieldValidator();        { //-- local scope            StringValidator typeValidator = new StringValidator();            typeValidator.setWhiteSpace("preserve");            fieldValidator.setValidator(typeValidator);        }        desc.setValidator(fieldValidator);        //-- _ref        desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl(java.lang.String.class, "_ref", "ref", 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            {                Include target = (Include) object;                return target.getRef();            }            public void setValue( java.lang.Object object, java.lang.Object value)                 throws IllegalStateException, IllegalArgumentException            {                try {                    Include target = (Include) object;                    target.setRef( (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);        desc.setMultivalued(false);        addFieldDescriptor(desc);                //-- validation code for: _ref        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            } //-- com.queplix.core.modules.web.jxb.IncludeDescriptor()      //-----------/     //- Methods -/    //-----------/    /**     * Method getAccessMode     *      *      *      * @return AccessMode     */    public org.exolab.castor.mapping.AccessMode getAccessMode()    {        return null;    } //-- org.exolab.castor.mapping.AccessMode getAccessMode()     /**     * Method getExtends     *      *      *      * @return ClassDescriptor     */    public org.exolab.castor.mapping.ClassDescriptor getExtends()    {        return null;    } //-- org.exolab.castor.mapping.ClassDescriptor getExtends()     /**     * Method getIdentity     *      *      *      * @return FieldDescriptor     */    public org.exolab.castor.mapping.FieldDescriptor getIdentity()    {        return identity;    } //-- org.exolab.castor.mapping.FieldDescriptor getIdentity()     /**     * Method getJavaClass     *      *      *      * @return Class     */    public java.lang.Class getJavaClass()    {        return com.queplix.core.modules.web.jxb.Include.class;    } //-- java.lang.Class getJavaClass()     /**     * Method getNameSpacePrefix     *      *      *      * @return String     */    public java.lang.String getNameSpacePrefix()    {        return nsPrefix;    } //-- java.lang.String getNameSpacePrefix()     /**     * Method getNameSpaceURI     *      *      *      * @return String     */    public java.lang.String getNameSpaceURI()    {        return nsURI;    } //-- java.lang.String getNameSpaceURI()     /**     * Method getValidator     *      *      *      * @return TypeValidator     */    public org.exolab.castor.xml.TypeValidator getValidator()    {        return this;    } //-- org.exolab.castor.xml.TypeValidator getValidator()     /**     * Method getXMLName     *      *      *      * @return String     */    public java.lang.String getXMLName()    {        return xmlName;    } //-- java.lang.String getXMLName() }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -