Package org.monjo.document

Examples of org.monjo.document.DirtFieldsWatcher


      setUpdate = new BasicDBObject();
    }
    dirtFields = new HashSet<String>();
    if (javaObject instanceof DirtFieldsWatcher) {
      dirtWatcher = true;
      DirtFieldsWatcher internalMonjoObject = (DirtFieldsWatcher) javaObject;
      Set<String> temp = internalMonjoObject.dirtFields();
      for (String name : temp) {
        char propName[] = name.substring("set".length()).toCharArray();
        propName[0] = Character.toLowerCase(propName[0]);
        dirtFields.add(new String(propName));
      }
View Full Code Here

TOP

Related Classes of org.monjo.document.DirtFieldsWatcher

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.