📄 formalparameter.java
字号:
/*
* This class was automatically generated with
* <a href="http://www.castor.org">Castor cvs.0.9.6</a>, using an
* XML Schema.
* $Id$
*/
package workflow.xwfbox.process;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
import workflow.xwfbox.process.types.FormalParameterModeType;
/**
* Class FormalParameter.
*
* @version $Revision$ $Date$
*/
public class FormalParameter implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field _id
*/
private java.lang.String _id;
/**
* Field _index
*/
private java.lang.String _index;
/**
* Field _mode
*/
private workflow.xwfbox.process.types.FormalParameterModeType _mode = workflow.xwfbox.process.types.FormalParameterModeType.valueOf("IN");
/**
* Field _dataType
*/
private java.lang.Object _dataType;
/**
* Field _description
*/
private java.lang.Object _description;
//----------------/
//- Constructors -/
//----------------/
public FormalParameter() {
super();
setMode(workflow.xwfbox.process.types.FormalParameterModeType.valueOf("IN"));
} //-- workflow.xwfbox.process.FormalParameter()
//-----------/
//- Methods -/
//-----------/
/**
* Returns the value of field 'dataType'.
*
* @return Object
* @return the value of field 'dataType'.
*/
public java.lang.Object getDataType()
{
return this._dataType;
} //-- java.lang.Object getDataType()
/**
* Returns the value of field 'description'.
*
* @return Object
* @return the value of field 'description'.
*/
public java.lang.Object getDescription()
{
return this._description;
} //-- java.lang.Object getDescription()
/**
* Returns the value of field 'id'.
*
* @return String
* @return the value of field 'id'.
*/
public java.lang.String getId()
{
return this._id;
} //-- java.lang.String getId()
/**
* Returns the value of field 'index'.
*
* @return String
* @return the value of field 'index'.
*/
public java.lang.String getIndex()
{
return this._index;
} //-- java.lang.String getIndex()
/**
* Returns the value of field 'mode'.
*
* @return FormalParameterModeType
* @return the value of field 'mode'.
*/
public workflow.xwfbox.process.types.FormalParameterModeType getMode()
{
return this._mode;
} //-- workflow.xwfbox.process.types.FormalParameterModeType getMode()
/**
* Sets the value of field 'dataType'.
*
* @param dataType the value of field 'dataType'.
*/
public void setDataType(java.lang.Object dataType)
{
this._dataType = dataType;
} //-- void setDataType(java.lang.Object)
/**
* Sets the value of field 'description'.
*
* @param description the value of field 'description'.
*/
public void setDescription(java.lang.Object description)
{
this._description = description;
} //-- void setDescription(java.lang.Object)
/**
* Sets the value of field 'id'.
*
* @param id the value of field 'id'.
*/
public void setId(java.lang.String id)
{
this._id = id;
} //-- void setId(java.lang.String)
/**
* Sets the value of field 'index'.
*
* @param index the value of field 'index'.
*/
public void setIndex(java.lang.String index)
{
this._index = index;
} //-- void setIndex(java.lang.String)
/**
* Sets the value of field 'mode'.
*
* @param mode the value of field 'mode'.
*/
public void setMode(workflow.xwfbox.process.types.FormalParameterModeType mode)
{
this._mode = mode;
} //-- void setMode(workflow.xwfbox.process.types.FormalParameterModeType)
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -