/web/DRCP/src/com/bluesky/drcp/business/GlobalVariable.java
http://drcp.googlecode.com/ · Java · 24 lines · 17 code · 7 blank · 0 comment · 0 complexity · 87d06eab1ba4ca2033dbf1479e65a192 MD5 · raw file
- package com.bluesky.drcp.business;
-
- public class GlobalVariable {
- private String id;
-
- private String value;
-
- public String getId() {
- return id;
- }
-
- public String getValue() {
- return value;
- }
-
- public void setId(String id) {
- this.id = id;
- }
-
- public void setValue(String value) {
- this.value = value;
- }
-
- }