Process.java
上传用户:ahit0551
上传日期:2009-04-15
资源大小:2345k
文件大小:1k
源码类别:

xml/soap/webservice

开发平台:

Java

  1. package name.xio.xiorkflow.domain;
  2. import org.jdom.Document;
  3. public class Process {
  4.     /**
  5.      * @return Returns the doc.
  6.      */
  7.     public Document getDoc() {
  8.         return doc;
  9.     }
  10.     /**
  11.      * @param doc The doc to set.
  12.      */
  13.     public void setDoc(Document doc) {
  14.         this.doc = doc;
  15.     }
  16.     /**
  17.      * @return Returns the name.
  18.      */
  19.     public String getName() {
  20.         return name;
  21.     }
  22.     /**
  23.      * @param name The name to set.
  24.      */
  25.     public void setName(String name) {
  26.         this.name = name;
  27.     }
  28.     private String name;
  29.     private Document doc;
  30. }