Examples of AdvancedInheritableItem


Examples of org.apache.easyant.core.descriptor.AdvancedInheritableItem

         * Apply {@link AdvancedInheritableItem} attributes from current plugin
         *
         * @param currentItem
         */
        private void applyInheritableItemAttributesFromParentNode(AdvancedInheritableItem currentItem) {
            AdvancedInheritableItem parentNode = null;
            if (easyAntState == EasyAntState.PLUGIN) {
                parentNode = currentPluginDescriptor;
            } else if (easyAntState == EasyAntState.CONFIGURE_PROJECT) {
                parentNode = easyAntModuleDescriptor.getConfigureProjectDescriptor();
            }

            if (parentNode != null) {
                currentItem.setInheritable(parentNode.isInheritable());
                currentItem.setInheritScope(parentNode.getInheritScope());
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.