📄 participant.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.project;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
/**
* Class Participant.
*
* @version $Revision$ $Date$
*/
public class Participant implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field _id
*/
private java.lang.String _id;
/**
* Field _name
*/
private java.lang.String _name;
/**
* Field _fromFile
*/
private java.lang.String _fromFile;
/**
* Field _fromPackage
*/
private java.lang.String _fromPackage;
//----------------/
//- Constructors -/
//----------------/
public Participant() {
super();
} //-- workflow.xwfbox.project.Participant()
//-----------/
//- Methods -/
//-----------/
/**
* Returns the value of field 'fromFile'.
*
* @return String
* @return the value of field 'fromFile'.
*/
public java.lang.String getFromFile()
{
return this._fromFile;
} //-- java.lang.String getFromFile()
/**
* Returns the value of field 'fromPackage'.
*
* @return String
* @return the value of field 'fromPackage'.
*/
public java.lang.String getFromPackage()
{
return this._fromPackage;
} //-- java.lang.String getFromPackage()
/**
* 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 'name'.
*
* @return String
* @return the value of field 'name'.
*/
public java.lang.String getName()
{
return this._name;
} //-- java.lang.String getName()
/**
* Sets the value of field 'fromFile'.
*
* @param fromFile the value of field 'fromFile'.
*/
public void setFromFile(java.lang.String fromFile)
{
this._fromFile = fromFile;
} //-- void setFromFile(java.lang.String)
/**
* Sets the value of field 'fromPackage'.
*
* @param fromPackage the value of field 'fromPackage'.
*/
public void setFromPackage(java.lang.String fromPackage)
{
this._fromPackage = fromPackage;
} //-- void setFromPackage(java.lang.String)
/**
* 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 'name'.
*
* @param name the value of field 'name'.
*/
public void setName(java.lang.String name)
{
this._name = name;
} //-- void setName(java.lang.String)
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -