externalreference.java
来自「一个工作流的原型」· Java 代码 · 共 123 行
JAVA
123 行
/*
* 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;
/**
* Class ExternalReference.
*
* @version $Revision$ $Date$
*/
public class ExternalReference implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field _xref
*/
private java.lang.String _xref;
/**
* Field _location
*/
private java.lang.String _location;
/**
* Field _namespace
*/
private java.lang.String _namespace;
//----------------/
//- Constructors -/
//----------------/
public ExternalReference() {
super();
} //-- workflow.xwfbox.process.ExternalReference()
//-----------/
//- Methods -/
//-----------/
/**
* Returns the value of field 'location'.
*
* @return String
* @return the value of field 'location'.
*/
public java.lang.String getLocation()
{
return this._location;
} //-- java.lang.String getLocation()
/**
* Returns the value of field 'namespace'.
*
* @return String
* @return the value of field 'namespace'.
*/
public java.lang.String getNamespace()
{
return this._namespace;
} //-- java.lang.String getNamespace()
/**
* Returns the value of field 'xref'.
*
* @return String
* @return the value of field 'xref'.
*/
public java.lang.String getXref()
{
return this._xref;
} //-- java.lang.String getXref()
/**
* Sets the value of field 'location'.
*
* @param location the value of field 'location'.
*/
public void setLocation(java.lang.String location)
{
this._location = location;
} //-- void setLocation(java.lang.String)
/**
* Sets the value of field 'namespace'.
*
* @param namespace the value of field 'namespace'.
*/
public void setNamespace(java.lang.String namespace)
{
this._namespace = namespace;
} //-- void setNamespace(java.lang.String)
/**
* Sets the value of field 'xref'.
*
* @param xref the value of field 'xref'.
*/
public void setXref(java.lang.String xref)
{
this._xref = xref;
} //-- void setXref(java.lang.String)
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?