Package net.sourceforge.processdash.data

Examples of net.sourceforge.processdash.data.SaveableData


     */
    public Object call(List arguments, ExpressionContext context) {
        SimpleData arg = getArg(arguments, 0);

        if (arg != null && !arg.isEditable()) {
            SaveableData sd = arg.getEditable(true);
            if (sd instanceof SimpleData)
                arg = (SimpleData) sd;
            else
                arg = sd.getSimpleValue();
        }

        return new DescribedValue(arg,
                CompiledFunction.ANONYMOUS_EDITABLE_ALIAS);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.data.SaveableData

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.