📄 header.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;
/**
* Class Header.
*
* @version $Revision$ $Date$
*/
public class Header implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The client width for all controls in this column
*/
private int _clientwidth;
/**
* keeps track of state for field: _clientwidth
*/
private boolean _has_clientwidth;
/**
* Order of the header
*/
private int _order;
/**
* keeps track of state for field: _order
*/
private boolean _has_order;
/**
* Form which contain this header
*/
private java.lang.String _form;
//----------------/
//- Constructors -/
//----------------/
public Header()
{
super();
} //-- com.queplix.core.modules.config.jxb.Header()
//-----------/
//- Methods -/
//-----------/
/**
* Method deleteClientwidth
*
*/
public void deleteClientwidth()
{
this._has_clientwidth= false;
} //-- void deleteClientwidth()
/**
* Method deleteOrder
*
*/
public void deleteOrder()
{
this._has_order= false;
} //-- void deleteOrder()
/**
* Returns the value of field 'clientwidth'. The field
* 'clientwidth' has the following description: The client
* width for all controls in this column
*
* @return int
* @return the value of field 'clientwidth'.
*/
public int getClientwidth()
{
return this._clientwidth;
} //-- int getClientwidth()
/**
* Returns the value of field 'form'. The field 'form' has the
* following description: Form which contain this header
*
* @return String
* @return the value of field 'form'.
*/
public java.lang.String getForm()
{
return this._form;
} //-- java.lang.String getForm()
/**
* Returns the value of field 'order'. The field 'order' has
* the following description: Order of the header
*
* @return int
* @return the value of field 'order'.
*/
public int getOrder()
{
return this._order;
} //-- int getOrder()
/**
* Method hasClientwidth
*
*
*
* @return boolean
*/
public boolean hasClientwidth()
{
return this._has_clientwidth;
} //-- boolean hasClientwidth()
/**
* Method hasOrder
*
*
*
* @return boolean
*/
public boolean hasOrder()
{
return this._has_order;
} //-- boolean hasOrder()
/**
* 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 'clientwidth'. The field
* 'clientwidth' has the following description: The client
* width for all controls in this column
*
* @param clientwidth the value of field 'clientwidth'.
*/
public void setClientwidth(int clientwidth)
{
this._clientwidth = clientwidth;
this._has_clientwidth = true;
} //-- void setClientwidth(int)
/**
* Sets the value of field 'form'. The field 'form' has the
* following description: Form which contain this header
*
* @param form the value of field 'form'.
*/
public void setForm(java.lang.String form)
{
this._form = form;
} //-- void setForm(java.lang.String)
/**
* Sets the value of field 'order'. The field 'order' has the
* following description: Order of the header
*
* @param order the value of field 'order'.
*/
public void setOrder(int order)
{
this._order = order;
this._has_order = true;
} //-- void setOrder(int)
/**
* 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.Header) Unmarshaller.unmarshal(com.queplix.core.modules.config.jxb.Header.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 + -