Types types = Types.getInstance();
types.registerEditor("BooleanEditor1", TYPE_BOOLEAN, Boolean.class, new EditorCreator<Boolean>() {
@Override
public Editor<Boolean> create() {
return new BooleanEditor1(y);
}
});
types.registerEditor("StringEditor1", TYPE_STRING, String.class, new EditorCreator<String>() {
@Override