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

Examples of org.eclipse.persistence.internal.jpa.metadata.cache.CacheIndexMetadata


            m_index = new IndexMetadata(getAnnotation(Index.class), this);
        }
       
        // Set the cache index annotation if one is present.
        if (isAnnotationPresent(CacheIndex.class)) {
            m_cacheIndex = new CacheIndexMetadata(getAnnotation(CacheIndex.class), this);
        }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.internal.jpa.metadata.cache.CacheIndexMetadata

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.