Package com.db4o.ext

Examples of com.db4o.ext.ExtObjectContainer.query()


      for(final ReflectClass rc : rcs) {
        if(rc.getDelegate() instanceof JdkClass) {
          final Class<?> objType = ((JdkClass) rc.getDelegate()).getJavaClass();
          final String cn = objType.getName();
          if(cn.indexOf("com.db4o") < 0 && objType != Object.class && cn.indexOf("java") < 0) {
            final Collection<?> clc = s.query(objType);
            if(clc != null) {
              for(final Object o : clc) {
                log.debug("Removing object: " + o);
                s.delete(o);
              }
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.