Package org.foray.fotree.fo.prop

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


    /**
     * Returns the flow-name property.
     * @return The flow-name property.
     */
    public String getFlowName() {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.FLOW_NAME);
        if (property != null) {
            return property.getValue();
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here


    /**
     * Returns the marker-class-name property.
     * @return The marker-class-name property.
     */
    public String getMarkerClassName() {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.MARKER_CLASS_NAME);
        if (property != null) {
            return property.getValue();
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here

    /**
     * Returns the retrieve-class-name property.
     * @return The retrieve-class-name property.
     */
    public String getRetrieveClassName() {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.RETRIEVE_CLASS_NAME);
        if (property != null) {
            return property.getValue();
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here

    /**
     * Returns the master-reference property.
     * @return The master-reference property.
     */
    public String getMasterReference() {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.MASTER_REFERENCE);
        if (property != null) {
            return property.getValue();
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here

    /**
     * Returns the master-name property.
     * @return The master-name property.
     */
    public String getMasterName() {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.MASTER_NAME);
        if (property != null) {
            return property.getValue();
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here

     * issues.
     * @return The color-profile-name property.
     */
    public String traitColorProfileName(final FObj fobj,
            final FoContext context) {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.COLOR_PROFILE_NAME);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The case-name property.
     */
    public String traitCaseName(final FObj fobj, final FoContext context) {
        final AbstractName property = (AbstractName) getProperty(
                FoProperty.CASE_NAME);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return AbstractName.getValueNoInstance();
    }
View Full Code Here

TOP

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

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.