property.java
来自「openacs source for CPE wan management」· Java 代码 · 共 29 行
JAVA
29 行
/*
* property.java
*
* Created on Sekmadienis, 2008, Vasario 10, 18.58
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package org.openacs.ws;
/**
*
* @author Administrator
*/
public class property {
public property () {
name = "";
value = "";
}
property (String name, String value) {
this.name = name;
this.value = value;
}
public String name;
public String value;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?