/*
* Light Portal
*
* Copyright (c) 2009, Light Portal, Inc or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Light Portal, Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*
*/
/*
* This class was automatically generated with
* <a href="http://www.castor.org">Castor 1.0</a>, using an XML
* Schema.
* $Id$
*/
package org.light.portal.portlet.definition;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
/**
* Class MimeTypeDescriptor.
*
* @version $Revision$ $Date$
*/
public class MimeTypeDescriptor extends MimeTypeTypeDescriptor {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field elementDefinition
*/
private boolean elementDefinition;
/**
* 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 MimeTypeDescriptor()
{
super();
setExtendsWithoutFlatten(new MimeTypeTypeDescriptor());
nsURI = "http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd";
xmlName = "mime-type";
elementDefinition = true;
} //-- org.light.portlet.definition.MimeTypeDescriptor()
//-----------/
//- 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 super.getExtends();
} //-- org.exolab.castor.mapping.ClassDescriptor getExtends()
/**
* Method getIdentity
*
*
*
* @return FieldDescriptor
*/
public org.exolab.castor.mapping.FieldDescriptor getIdentity()
{
if (identity == null)
return super.getIdentity();
return identity;
} //-- org.exolab.castor.mapping.FieldDescriptor getIdentity()
/**
* Method getJavaClass
*
*
*
* @return Class
*/
public java.lang.Class getJavaClass()
{
return org.light.portal.portlet.definition.MimeType.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()
/**
* Method isElementDefinition
*
*
*
* @return boolean
*/
public boolean isElementDefinition()
{
return elementDefinition;
} //-- boolean isElementDefinition()
}
|