Examples of XmiAttribute


Examples of org.modeshape.sequencer.teiid.xmi.XmiAttribute

        String name = null;

        if (StringUtil.isBlank(nameAttributeUri) || (element == null)) {
            name = primaryNodeType;
        } else {
            final XmiAttribute nameAttribute = element.getNameAttribute(nameAttributeUri);

            if (nameAttribute == null) {
                name = primaryNodeType;
            } else {
                name = nameAttribute.getValue();
            }
        }

        final String uuid = ((element == null) ? null : element.getUuid());
        return addNode(parentNode, name, uuid, primaryNodeType);
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.