📄 menuitem.java
字号:
/*
* 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.config.jxb;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.io.IOException;
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
import org.exolab.castor.xml.MarshalException;
import org.exolab.castor.xml.Marshaller;
import org.exolab.castor.xml.Unmarshaller;
import org.exolab.castor.xml.ValidationException;
import org.xml.sax.ContentHandler;
/**
* The menu item description
*
* @version $Revision$ $Date$
*/
public class MenuItem extends com.queplix.core.utils.jxb.JXBObject
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field _name
*/
private java.lang.String _name;
/**
* Field _order
*/
private java.lang.Integer _order;
/**
* Field _caption
*/
private java.lang.String _caption;
/**
* Field _contextMenu
*/
private java.lang.String _contextMenu;
/**
* The captions collection
*/
private com.queplix.core.modules.config.jxb.Captions _captions;
//----------------/
//- Constructors -/
//----------------/
public MenuItem()
{
super();
} //-- com.queplix.core.modules.config.jxb.MenuItem()
//-----------/
//- Methods -/
//-----------/
/**
* Returns the value of field 'caption'.
*
* @return String
* @return the value of field 'caption'.
*/
public java.lang.String getCaption()
{
return this._caption;
} //-- java.lang.String getCaption()
/**
* Returns the value of field 'captions'. The field 'captions'
* has the following description: The captions collection
*
* @return Captions
* @return the value of field 'captions'.
*/
public com.queplix.core.modules.config.jxb.Captions getCaptions()
{
return this._captions;
} //-- com.queplix.core.modules.config.jxb.Captions getCaptions()
/**
* Returns the value of field 'contextMenu'.
*
* @return String
* @return the value of field 'contextMenu'.
*/
public java.lang.String getContextMenu()
{
return this._contextMenu;
} //-- java.lang.String getContextMenu()
/**
* Returns the value of field 'name'.
*
* @return String
* @return the value of field 'name'.
*/
public java.lang.String getName()
{
return this._name;
} //-- java.lang.String getName()
/**
* Returns the value of field 'order'.
*
* @return Integer
* @return the value of field 'order'.
*/
public java.lang.Integer getOrder()
{
return this._order;
} //-- java.lang.Integer getOrder()
/**
* Method isValid
*
*
*
* @return boolean
*/
public boolean isValid()
{
try {
validate();
}
catch (org.exolab.castor.xml.ValidationException vex) {
return false;
}
return true;
} //-- boolean isValid()
/**
* Method marshal
*
*
*
* @param out
*/
public void marshal(java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
Marshaller.marshal(this, out);
} //-- void marshal(java.io.Writer)
/**
* Method marshal
*
*
*
* @param handler
*/
public void marshal(org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
Marshaller.marshal(this, handler);
} //-- void marshal(org.xml.sax.ContentHandler)
/**
* Sets the value of field 'caption'.
*
* @param caption the value of field 'caption'.
*/
public void setCaption(java.lang.String caption)
{
this._caption = caption;
} //-- void setCaption(java.lang.String)
/**
* Sets the value of field 'captions'. The field 'captions' has
* the following description: The captions collection
*
* @param captions the value of field 'captions'.
*/
public void setCaptions(com.queplix.core.modules.config.jxb.Captions captions)
{
this._captions = captions;
} //-- void setCaptions(com.queplix.core.modules.config.jxb.Captions)
/**
* Sets the value of field 'contextMenu'.
*
* @param contextMenu the value of field 'contextMenu'.
*/
public void setContextMenu(java.lang.String contextMenu)
{
this._contextMenu = contextMenu;
} //-- void setContextMenu(java.lang.String)
/**
* Sets the value of field 'name'.
*
* @param name the value of field 'name'.
*/
public void setName(java.lang.String name)
{
this._name = name;
} //-- void setName(java.lang.String)
/**
* Sets the value of field 'order'.
*
* @param order the value of field 'order'.
*/
public void setOrder(java.lang.Integer order)
{
this._order = order;
} //-- void setOrder(java.lang.Integer)
/**
* Method unmarshal
*
*
*
* @param reader
* @return Object
*/
public static java.lang.Object unmarshal(java.io.Reader reader)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
return (com.queplix.core.modules.config.jxb.MenuItem) Unmarshaller.unmarshal(com.queplix.core.modules.config.jxb.MenuItem.class, reader);
} //-- java.lang.Object unmarshal(java.io.Reader)
/**
* Method validate
*
*/
public void validate()
throws org.exolab.castor.xml.ValidationException
{
org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
validator.validate(this);
} //-- void validate()
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -