Search in sources :

Example 1 with NotionPropertyParser

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;
}
Also used : ErrorBuffer(org.structr.common.error.ErrorBuffer) FrameworkException(org.structr.common.error.FrameworkException) NotionPropertyParser(org.structr.schema.parser.NotionPropertyParser)

Aggregations

ErrorBuffer (org.structr.common.error.ErrorBuffer)1 FrameworkException (org.structr.common.error.FrameworkException)1 NotionPropertyParser (org.structr.schema.parser.NotionPropertyParser)1