Package org.apache.ivy.core.module.descriptor

Examples of org.apache.ivy.core.module.descriptor.DefaultExtendsDescriptor


            if (parent == null) {
                throw new ParseException("Unable to parse included ivy file for "
                        + parentMrid.toString(), 0);
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(parent, location,
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]), local);
            getMd().addInheritedDescriptor(ed);

            mergeWithOtherModuleDescriptor(extendTypes, parent);
        }
View Full Code Here


            if (parent == null) {
                throw new ParseException("Unable to parse included ivy file for "
                        + parentMrid.toString(), 0);
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(
                    parent,
                    attributes.getValue("location"),
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]),
                    local);
            getMd().addInheritedDescriptor(ed);
View Full Code Here

            if (parent == null) {
                throw new ParseException("Unable to parse included ivy file for "
                        + parentMrid.toString(), 0);
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(
                    parent.getModuleRevisionId(),
                    parent.getResolvedModuleRevisionId(),
                    attributes.getValue("location"),
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]));
            getMd().addInheritedDescriptor(ed);
View Full Code Here

            // if still not found throw an exception
            if (parent == null) {
                throw new ParseException("Unable to parse included ivy file for " + parentMrid.toString(), 0);
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(parent, location,
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]), local);
            getMd().addInheritedDescriptor(ed);

            mergeWithOtherModuleDescriptor(extendTypes, parent);
        }
View Full Code Here

                            + parentOrganisation + "#" + parentModule + ";" + parentRevision
                            + " Reason :" + e.getLocalizedMessage(), 0);
                }
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(
                    parent.getModuleRevisionId(),
                    parent.getResolvedModuleRevisionId(),
                    attributes.getValue("location"),
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]));
            getMd().addInheritedDescriptor(ed);
View Full Code Here

                            + parentOrganisation + "#" + parentModule + ";" + parentRevision
                            + " Reason :" + e.getLocalizedMessage(), 0);
                }
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(
                    parent.getModuleRevisionId(),
                    parent.getResolvedModuleRevisionId(),
                    attributes.getValue("location"),
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]));
            getMd().addInheritedDescriptor(ed);
View Full Code Here

            if (parent == null) {
                throw new ParseException("Unable to parse included ivy file for "
                        + parentMrid.toString(), 0);
            }

            DefaultExtendsDescriptor ed = new DefaultExtendsDescriptor(
                    parent,
                    location,
                    (String[]) extendTypes.toArray(new String[extendTypes.size()]),
                    local);
            getMd().addInheritedDescriptor(ed);
View Full Code Here

TOP

Related Classes of org.apache.ivy.core.module.descriptor.DefaultExtendsDescriptor

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.