📄 ruleoption.java
字号:
package org.jivesoftware.openfire.plugin.rules;public class RuleOption { private String name; private String type; private boolean required; private String value; public RuleOption() {} public RuleOption(String name, String type, boolean required, String value) { this.name = name; this.value = value; this.type = type; this.required = required; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Object getType() { return type; } public void setType(String type) { this.type = type; } public boolean isRequired() { return required; } public void setRequired(boolean required) { this.required = required; } public String getValue() { return value; } public void setValue(String value) { this.value = value; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -