001 002 package railo.runtime.sql.old; 003 004 005 // Referenced classes of package Zql: 006 // ZStatement 007 008 public final class ZTransactStmt 009 implements ZStatement 010 { 011 012 public ZTransactStmt(String s) 013 { 014 comment_ = null; 015 readOnly_ = false; 016 statement_ = new String(s); 017 } 018 019 public void setComment(String s) 020 { 021 comment_ = new String(s); 022 } 023 024 public String getComment() 025 { 026 return comment_; 027 } 028 029 public boolean isReadOnly() 030 { 031 return readOnly_; 032 } 033 034 String statement_; 035 String comment_; 036 boolean readOnly_; 037 }