Examples of XSComplexTypeDefinition


Examples of org.apache.xerces.xs.XSComplexTypeDefinition

     * @param value
     * @param cell
     */
    private static void renderComplexType(final Object value, JLabel cell) {
        if (value instanceof XSComplexTypeDefinition) {
            XSComplexTypeDefinition complexType = ((XSComplexTypeDefinition) value).getAnonymous() ? AnonymousTypeFactory.getProxy((XSComplexTypeDefinition) value) : (XSComplexTypeDefinition) value;
            StringBuilder sb = new StringBuilder();
            sb.append(complexType.getName());
            sb.append(", <");
            sb.append(complexType.getNamespace());
            sb.append(">");
            cell.setText(sb.toString());
            cell.setIcon(ComplexTypeCellRenderer.icon);
        }
    }
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.