All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.directwebremoting.ScriptBuffer Maven / Gradle / Ivy

/*
 * Copyright 2005 Joe Walker
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.directwebremoting;

import java.util.ArrayList;
import java.util.List;

/**
 * A ScriptBuffer is like a StringBuffer except that it is used to create
 * Javascript commands. There are 2 version of the append() method:
 * 

The first is {@link #appendScript(String)} which assumes that the * parameter is to be inserted literally into the output. *

The second is {@link #appendData(String)} (and variants for Object and * primitive types) which assumes that the parameter is a variable which should * be properly converted, escaped and quoted. * @author Joe Walker [joe at getahead dot ltd dot uk] */ public class ScriptBuffer { /** * Create an empty ScriptBuffer. */ public ScriptBuffer() { } /** * Create a ScriptBuffer with some initial content. * {@link #appendScript(String)} is called with the passed string * @param str The initial string to place in the buffer */ public ScriptBuffer(String str) { appendScript(str); } /** * @param str The String to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(java.lang.String) */ public ScriptBuffer appendScript(String str) { parts.add(new StringWrapper(str)); return this; } /** * @param b The boolean to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(boolean) */ public ScriptBuffer appendData(boolean b) { Boolean data = b ? Boolean.TRUE : Boolean.FALSE; parts.add(data); return this; } /** * @param c The char to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(char) */ public ScriptBuffer appendData(char c) { parts.add(new Character(c)); return this; } /** * @param d The double to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(double) */ public ScriptBuffer appendData(double d) { parts.add(new Double(d)); return this; } /** * @param f The float to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(float) */ public ScriptBuffer appendData(float f) { parts.add(new Float(f)); return this; } /** * @param i The int to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(int) */ public ScriptBuffer appendData(int i) { parts.add(new Integer(i)); return this; } /** * @param l The long to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(long) */ public ScriptBuffer appendData(long l) { parts.add(new Long(l)); return this; } /** * @param obj The Object to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(java.lang.Object) */ public ScriptBuffer appendData(Object obj) { parts.add(obj); return this; } /** * @param str The String to add to the script * @return this. To allow sv.append(x).append(y).append(z); * @see java.lang.StringBuffer#append(java.lang.String) */ public ScriptBuffer appendData(String str) { parts.add(str); return this; } /* (non-Javadoc) * @see java.lang.Object#toString() */ public String toString() { return parts.toString(); } /** * For DWR use only - This method is not part of the public API. * Do not use it without understanding the implications for future proofing. * @return The list of parts of the final output script */ public List getParts() { return parts; } /** * A wrapper around a string to distinguish a string entered into this * buffer as code and a string entered as data */ public class StringWrapper { StringWrapper(String data) { this.data = data; } String data; /* (non-Javadoc) * @see java.lang.Object#toString() */ public String toString() { return data; } } /** * This is where we store all the script components waiting to be serialized */ private List parts = new ArrayList(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy