Here you can find the source of quote(String name)
public static String quote(String name)
//package com.java2s; //License from project: Apache License public class Main { /** Quote the given name by prefixing it with a dollar ($) */ public static String quote(String name) { return "$" + name; }/*from ww w . j ava 2 s . c o m*/ }