department.java

来自「acegi构造安全的java系统」· Java 代码 · 共 29 行

JAVA
29
字号
package org.acegisecurity.annotation;/** * * @author Joe Scalise */public class Department extends Entity {    //~ Instance fields ========================================================    private boolean active = true;    //~ Constructors ===========================================================    public Department(String name) {        super(name);    }    //~ Methods ================================================================    public boolean isActive() {        return this.active;    }    void deactive() {        this.active = true;    }}

⌨️ 快捷键说明

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