Package org.geotools.feature.type

Examples of org.geotools.feature.type.AbstractLazyAttributeTypeImpl


     * @generated
     */
    public static final AttributeType MD_OBLIGATIONCODE_TYPE_TYPE = build_MD_OBLIGATIONCODE_TYPE_TYPE();
    
    private static AttributeType build_MD_OBLIGATIONCODE_TYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.isotc211.org/2005/gmd","MD_ObligationCode_Type"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.STRING_TYPE;
View Full Code Here


     * @generated
     */
    public static final AttributeType MD_PIXELORIENTATIONCODE_TYPE_TYPE = build_MD_PIXELORIENTATIONCODE_TYPE_TYPE();
    
    private static AttributeType build_MD_PIXELORIENTATIONCODE_TYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.isotc211.org/2005/gmd","MD_PixelOrientationCode_Type"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.STRING_TYPE;
View Full Code Here

     * @generated
     */
    public static final AttributeType MD_TOPICCATEGORYCODE_TYPE_TYPE = build_MD_TOPICCATEGORYCODE_TYPE_TYPE();
    
    private static AttributeType build_MD_TOPICCATEGORYCODE_TYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.isotc211.org/2005/gmd","MD_TopicCategoryCode_Type"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.STRING_TYPE;
View Full Code Here

        // import?
        if (!xsdType.getTargetNamespace().equals(schema.getTargetNamespace())) {
            return (AttributeType) findType(xsdType);
        }
        System.err.println("Creating simple type " + name(xsdType));
        AttributeType gtType = new AbstractLazyAttributeTypeImpl(name(xsdType), Object.class,
                false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                XSDTypeDefinition baseType = xsdType.getBaseType();
                if (baseType != null && baseType.getName() != null && !baseType.equals(xsdType)) {
View Full Code Here

     * @generated
     */
    public static final AttributeType DATE_TYPE_TYPE = build_DATE_TYPE_TYPE();
    
    private static AttributeType build_DATE_TYPE_TYPE() {
        AttributeType builtType = new AbstractLazyAttributeTypeImpl(
                new NameImpl("http://www.isotc211.org/2005/gco","Date_Type"),
                java.lang.Object.class, false, false, null, null) {
            @Override
            public AttributeType buildSuper() {
                return XSSchema.ANYSIMPLETYPE_TYPE;
View Full Code Here

TOP

Related Classes of org.geotools.feature.type.AbstractLazyAttributeTypeImpl

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.