Package jodd.mutable

Examples of jodd.mutable.MutableLong.longValue()


        if (currentTime == null) {
          // new file
          map.put(file, new MutableLong(lastModified));
          onChange(file, Event.CREATED);
        }
        else if (currentTime.longValue() != lastModified) {
          // modified file
          currentTime.setValue(lastModified);
          onChange(file, Event.MODIFIED);
        }
      }
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.