Child: [9eb143] (diff)

Download this file

MetaClassifier.java    27 lines (20 with data), 489 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package squirrel.model;
public class MetaClassifier {
private String name;
private String className;
private String type;
public MetaClassifier(String name, String className, String type) {
this.name = name;
this.className = className;
this.type = type;
}
public String getName() {
return name;
}
public String getClassName() {
return className;
}
public String getType() {
return type;
}
}