Package org.eclipse.persistence.internal.jpa.metadata.queries

Examples of org.eclipse.persistence.internal.jpa.metadata.queries.OracleArrayTypeMetadata


* @since EclipseLink 2.5.1
*/
public class OracleArrayImpl extends MetadataImpl<OracleArrayTypeMetadata> implements OracleArray {

    public OracleArrayImpl() {
        super(new OracleArrayTypeMetadata());
    }
View Full Code Here


       
        // Process the annotations.
        MetadataAnnotation arrayTypes = getAnnotation(OracleArrays.class);
        if (arrayTypes != null) {
            for (Object arrayType : arrayTypes.getAttributeArray("value")) {
                getProject().addComplexMetadataType(new OracleArrayTypeMetadata((MetadataAnnotation) arrayType, this));
            }
        }
       
        MetadataAnnotation arrayType = getAnnotation(OracleArray.class);
        if (arrayType != null) {
            getProject().addComplexMetadataType(new OracleArrayTypeMetadata(arrayType, this));
        }       
    }
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.internal.jpa.metadata.queries.OracleArrayTypeMetadata

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.