Package org.axsl.fo.fo

Examples of org.axsl.fo.fo.BasicLink


    /**
     * {@inheritDoc}
     */
    public LinkType linkType() {
        final BasicLink link = this.traitGeneratedBy().ancestorBasicLink(this);
        if (link == null) {
            return null;
        }
        return link.getLinkType();
    }
View Full Code Here


    /**
     * {@inheritDoc}
     */
    public String linkDestination() {
        final BasicLink link = this.traitGeneratedBy().ancestorBasicLink(this);
        if (link == null) {
            return null;
        }
        return link.getDestination();
    }
View Full Code Here

TOP

Related Classes of org.axsl.fo.fo.BasicLink

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.