1 17 package org.apache.ws.jaxme.sqls.impl; 18 19 import org.apache.ws.jaxme.sqls.RawSQLCode; 20 21 22 25 public class RawSQLCodeImpl implements RawSQLCode { 26 private final String rawSQLCode; 27 28 protected RawSQLCodeImpl(String pRawSQLCode) { 29 rawSQLCode = pRawSQLCode; 30 } 31 32 public String toString() { 33 return rawSQLCode; 34 } 35 36 public String getRawSQL() { 37 return rawSQLCode; 38 } 39 } 40 | Popular Tags |