OSDN Git Service

要チェック!!!
[chemicraft/chemicraft.git] / common / pcc / chemicraft / core / debug / DebugData.java
1 package pcc.chemicraft.core.debug;
2
3 public class DebugData {
4
5         private String key;
6         private Object value;
7
8         public DebugData(String par1, Object par2) {
9                 this.key = par1;
10                 this.value = par2;
11         }
12
13         public String getKey() {
14                 return this.key;
15         }
16
17         public Object getValue() {
18                 return this.value;
19         }
20
21 }