Package net.sourceforge.processdash.data

Examples of net.sourceforge.processdash.data.FrozenData.thaw()


        SaveableData value = element.getValue(), thawedValue;
        if (value instanceof FrozenData) {
          // Thaw the value.
          FrozenData fd = (FrozenData) value;
          thawedValue = fd.thaw();
          boolean isDefaultVal = (thawedValue == FrozenData.DEFAULT);
          if (isDefaultVal) {
            boolean fileIsReadOnly = (element.datafile == null ? false
                    : !element.datafile.canWrite);
            thawedValue = instantiateValue(dataName, fd.getPrefix(),
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.