Package org.cruxframework.crux.core.client.db.annotation

Examples of org.cruxframework.crux.core.client.db.annotation.Store


 
  protected void getIndexesFromObject(JClassType objectStoreTarget, Set<IndexData> indexesCreated, String objectStoreName)
    {
      if (objectStoreTarget != null)
    {
        Store store = objectStoreTarget.getAnnotation(Store.class);
        if (store != null)
        {
          getIndexesFromMetadata(store.indexes(), indexesCreated, objectStoreName);

          List<IndexData> indexes = getIndexFromAnnotations(objectStoreTarget, "");
          for (IndexData index: indexes)
          {
            if (indexesCreated.contains(index.keyPath[0]))
View Full Code Here

TOP

Related Classes of org.cruxframework.crux.core.client.db.annotation.Store

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.