Package org.foray.fotree.fo.prop

Examples of org.foray.fotree.fo.prop.PdCaseTitle


    /**
     * Returns the case-title property.
     * @return The case-title property.
     */
    public String traitCaseTitle() {
        final PdCaseTitle property = (PdCaseTitle) getProperty(
                FoProperty.CASE_TITLE);
        if (property != null) {
            return property.getValue();
        }
        return WKConstants.EMPTY_STRING;
    }
View Full Code Here


        }
        case CASE_NAME: {
            return new PdCaseName(fobj, propertyFullName, attributeValue);
        }
        case CASE_TITLE: {
            return new PdCaseTitle(fobj, propertyFullName, attributeValue);
        }
        case CHANGE_BAR_CLASS: {
            return new PdChangeBarClass(fobj, propertyFullName, attributeValue);
        }
        case CHANGE_BAR_COLOR: {
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.prop.PdCaseTitle

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.