Package com.db4o.config

Examples of com.db4o.config.ObjectAttribute


       
      if(config.reflector()==null) {
        config.reflectWith(jdk().createReflector(null));
      }
     
        config.objectClass("java.lang.StringBuffer").compare(new ObjectAttribute() {
            public Object attribute(Object original) {
                if (original instanceof StringBuffer) {
                    return ((StringBuffer) original).toString();
                }
                return original;
View Full Code Here

TOP

Related Classes of com.db4o.config.ObjectAttribute

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.