createStandardDefinition(prop, id, PropertyType.INTEGER, displayName, Cardinality.SINGLE);
return prop;
}
public static PropertyIntegerDefinitionImpl createIntegerMultiDefinition(String id, String displayName) {
PropertyIntegerDefinitionImpl prop = new PropertyIntegerDefinitionImpl();
createStandardDefinition(prop, id, PropertyType.INTEGER, displayName, Cardinality.MULTI);
return prop;
}