use of org.structr.schema.parser.NotionPropertyParser in project structr by structr.
the class SchemaProperty method getNotionPropertyParser.
public NotionPropertyParser getNotionPropertyParser() {
if (notionPropertyParser == null) {
try {
notionPropertyParser = new NotionPropertyParser(new ErrorBuffer(), getName(), this);
notionPropertyParser.getPropertySource(new StringBuilder(), getProperty(SchemaProperty.schemaNode));
} catch (FrameworkException fex) {
logger.warn("", fex);
}
}
return notionPropertyParser;
}
Aggregations