Package org.openbel.framework.core.df.beldata

Examples of org.openbel.framework.core.df.beldata.BELDataInvalidPropertyException


        if (LIST_TYPE.equalsIgnoreCase(type)) {
            annotationType = AnnotationType.ENUMERATION;
        } else if (PATTERN_TYPE.equalsIgnoreCase(type)) {
            annotationType = AnnotationType.REGULAR_EXPRESSION;
        } else {
            throw new BELDataInvalidPropertyException(resourceLocation,
                    BLOCK_NAME, "TypeString", TYPE_STRING_VALUES);
        }

        description = blockProperties.getProperty("DescriptionString");
        if (StringUtils.isBlank(description)) {
View Full Code Here

TOP

Related Classes of org.openbel.framework.core.df.beldata.BELDataInvalidPropertyException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.