workflowdescriptor.java

来自「采用tapestry的简单OA系统」· Java 代码 · 共 32 行

JAVA
32
字号
package com.ejsun.entapps.domain.simpleoa;

import com.ejsun.entapps.domain.NamedEntity;

/**
 * @author	Quake Wang
 * @since	2004-5-9
 * @version $Revision: 1.1 $
 * 
 **/
public class WorkflowDescriptor extends NamedEntity {
	private String description;
	private Template template;
	
    public String getDescription() {
        return description;
    }

    public Template getTemplate() {
        return template;
    }

    public void setDescription(String string) {
        description = string;
    }

    public void setTemplate(Template template) {
        this.template = template;
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?