use of org.structr.common.error.ErrorBuffer in project structr by structr.
the class SchemaProperty method getLongPropertyParser.
public LongPropertyParser getLongPropertyParser() {
if (longPropertyParser == null) {
try {
longPropertyParser = new LongPropertyParser(new ErrorBuffer(), getName(), this);
longPropertyParser.getPropertySource(new StringBuilder(), getProperty(SchemaProperty.schemaNode));
} catch (FrameworkException fex) {
logger.warn("", fex);
}
}
return longPropertyParser;
}
Aggregations