01: package org.osbl.plugin;
02:
03: public class ExtensionPoint {
04: String type;
05: Class face;
06:
07: public ExtensionPoint(String type, Class face) {
08: this .type = type;
09: this .face = face;
10: }
11:
12: public String getType() {
13: return type;
14: }
15:
16: public Class getFace() {
17: return face;
18: }
19:
20: public String toString() {
21: return "ExtensionPoint{" + "type='" + type + '\'' + ", face="
22: + face + '}';
23: }
24: }
|