1 package com.wikihouse.wildcats0201.jdbcchart.dto; 2 3 /*** 4 * <B>SQL </B>. 5 * 6 * @author $Author: wildcats $ 7 * @version $Revision: 5 $ 8 */ 9 public class SQL { 10 11 private final String text; 12 13 public SQL(String text) { 14 this.text = text; 15 } 16 17 public String getText() { 18 return this.text; 19 } 20 }