Package com.volantis.mcs.layouts

Examples of com.volantis.mcs.layouts.FormFragment


    }

    // Javadoc inherited from super class.
    protected boolean isEmptyImpl() {

        FormFragment currentFragment = context.getCurrentFormFragment();
        FormFragment fragment = (FormFragment) format;

        Format child = fragment.getChildAt(0);

        if (child != null) {
            if (currentFragment == null || fragment == currentFragment) {
                return context.isFormatEmpty(child);
            } else {
View Full Code Here


            boolean before, List linkList) {
        if (fragment == null) {
            return;
        }
        FormFragmentInstance instance = (FormFragmentInstance) fragment;
        FormFragment formFragment = (FormFragment) instance.getFormat();
        boolean isLink = prev ? formFragment.isPreviousLinkBefore() :
            formFragment.isNextLinkBefore();
        if ((before && isLink) || (!before && !isLink)) {
            addLink(instance, formFragment, prev, linkList);
        }
    }
View Full Code Here

TOP

Related Classes of com.volantis.mcs.layouts.FormFragment

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.