📄 subfocus.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 java.util.ArrayList;
import java.util.Enumeration;
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 sequince of subfocuses
*
* @version $Revision$ $Date$
*/
public class SubFocus extends com.queplix.core.utils.jxb.JXBObject
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field _name
*/
private java.lang.String _name;
/**
* Field _focus
*/
private java.lang.String _focus;
/**
* Field _order
*/
private java.lang.Integer _order;
/**
* Field _caption
*/
private java.lang.String _caption;
/**
* Field _icon
*/
private java.lang.String _icon;
/**
* The sequence of tabs
*/
private java.util.ArrayList _tabList;
/**
* The subfocus captions collection
*/
private com.queplix.core.modules.config.jxb.Captions _captions;
//----------------/
//- Constructors -/
//----------------/
public SubFocus()
{
super();
_tabList = new ArrayList();
} //-- com.queplix.core.modules.config.jxb.SubFocus()
//-----------/
//- Methods -/
//-----------/
/**
* Method addTab
*
*
*
* @param vTab
*/
public void addTab(com.queplix.core.modules.config.jxb.Tab vTab)
throws java.lang.IndexOutOfBoundsException
{
_tabList.add(vTab);
} //-- void addTab(com.queplix.core.modules.config.jxb.Tab)
/**
* Method addTab
*
*
*
* @param index
* @param vTab
*/
public void addTab(int index, com.queplix.core.modules.config.jxb.Tab vTab)
throws java.lang.IndexOutOfBoundsException
{
_tabList.add(index, vTab);
} //-- void addTab(int, com.queplix.core.modules.config.jxb.Tab)
/**
* Method clearTab
*
*/
public void clearTab()
{
_tabList.clear();
} //-- void clearTab()
/**
* Method enumerateTab
*
*
*
* @return Enumeration
*/
public java.util.Enumeration enumerateTab()
{
return new org.exolab.castor.util.IteratorEnumeration(_tabList.iterator());
} //-- java.util.Enumeration enumerateTab()
/**
* 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 subfocus 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 'focus'.
*
* @return String
* @return the value of field 'focus'.
*/
public java.lang.String getFocus()
{
return this._focus;
} //-- java.lang.String getFocus()
/**
* Returns the value of field 'icon'.
*
* @return String
* @return the value of field 'icon'.
*/
public java.lang.String getIcon()
{
return this._icon;
} //-- java.lang.String getIcon()
/**
* 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 getTab
*
*
*
* @param index
* @return Tab
*/
public com.queplix.core.modules.config.jxb.Tab getTab(int index)
throws java.lang.IndexOutOfBoundsException
{
//-- check bounds for index
if ((index < 0) || (index > _tabList.size())) {
throw new IndexOutOfBoundsException();
}
return (com.queplix.core.modules.config.jxb.Tab) _tabList.get(index);
} //-- com.queplix.core.modules.config.jxb.Tab getTab(int)
/**
* Method getTab
*
*
*
* @return Tab
*/
public com.queplix.core.modules.config.jxb.Tab[] getTab()
{
int size = _tabList.size();
com.queplix.core.modules.config.jxb.Tab[] mArray = new com.queplix.core.modules.config.jxb.Tab[size];
for (int index = 0; index < size; index++) {
mArray[index] = (com.queplix.core.modules.config.jxb.Tab) _tabList.get(index);
}
return mArray;
} //-- com.queplix.core.modules.config.jxb.Tab[] getTab()
/**
* Method getTabCount
*
*
*
* @return int
*/
public int getTabCount()
{
return _tabList.size();
} //-- int getTabCount()
/**
* 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)
/**
* Method removeTab
*
*
*
* @param vTab
* @return boolean
*/
public boolean removeTab(com.queplix.core.modules.config.jxb.Tab vTab)
{
boolean removed = _tabList.remove(vTab);
return removed;
} //-- boolean removeTab(com.queplix.core.modules.config.jxb.Tab)
/**
* 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 subfocus 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 'focus'.
*
* @param focus the value of field 'focus'.
*/
public void setFocus(java.lang.String focus)
{
this._focus = focus;
} //-- void setFocus(java.lang.String)
/**
* Sets the value of field 'icon'.
*
* @param icon the value of field 'icon'.
*/
public void setIcon(java.lang.String icon)
{
this._icon = icon;
} //-- void setIcon(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 setTab
*
*
*
* @param index
* @param vTab
*/
public void setTab(int index, com.queplix.core.modules.config.jxb.Tab vTab)
throws java.lang.IndexOutOfBoundsException
{
//-- check bounds for index
if ((index < 0) || (index > _tabList.size())) {
throw new IndexOutOfBoundsException();
}
_tabList.set(index, vTab);
} //-- void setTab(int, com.queplix.core.modules.config.jxb.Tab)
/**
* Method setTab
*
*
*
* @param tabArray
*/
public void setTab(com.queplix.core.modules.config.jxb.Tab[] tabArray)
{
//-- copy array
_tabList.clear();
for (int i = 0; i < tabArray.length; i++) {
_tabList.add(tabArray[i]);
}
} //-- void setTab(com.queplix.core.modules.config.jxb.Tab)
/**
* 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.SubFocus) Unmarshaller.unmarshal(com.queplix.core.modules.config.jxb.SubFocus.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 + -