Package pspdash.data

Examples of pspdash.data.ImmutableStringData


    public void caseTScript1FunctionName(TScript1FunctionName node) {
        add(FunctionCall.get(node.getText())); }
    public void caseTIdentifier(TIdentifier node) {
        add(new PushVariable(trimDelim(node))); }
    public void caseTStringLiteral(TStringLiteral node) {
        add(new PushConstant(new ImmutableStringData(trimDelim(node)))); }
View Full Code Here


        out.print("\r\n\r\n");
    }

    /** Save a value into the data repository. */
    protected void putValue(String name, String value) {
        putValue(name, new ImmutableStringData(value));
    }
View Full Code Here

TOP

Related Classes of pspdash.data.ImmutableStringData

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.