collectionelement.java

来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 18 行

JAVA
18
字号
package net.java.workeffort.service.domain;/** * The collection element in a domain. The value of 'processType' determines * whether the collection element gets inserted, updated or deleted. * @author Antony Joseph */public class CollectionElement extends BaseDomain {    private String processType;    public String getProcessType() {        return processType;    }    public void setProcessType(String processType) {        this.processType = processType;    }}

⌨️ 快捷键说明

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