305928e87008001c19f0d5298c7864ee
来自「基于linux操作系统」· 代码 · 共 49 行
TXT
49 行
package deng;
public class Rule {
String name;
String IP;
String []direction;
String port;
String protocol;
String strategy;
public String[] getDirection() {
return direction;
}
public void setDirection(String[] direction) {
this.direction = direction;
}
public String getIP() {
return IP;
}
public void setIP(String ip) {
IP = ip;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPort() {
return port;
}
public void setPort(String port) {
this.port = port;
}
public String getProtocol() {
return protocol;
}
public void setProtocol(String protocol) {
this.protocol = protocol;
}
public String getStrategy() {
return strategy;
}
public void setStrategy(String strategy) {
this.strategy = strategy;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?