001    
002    package railo.runtime.sql.old;
003    
004    import java.util.Vector;
005    
006    // Referenced classes of package Zql:
007    //            ZStatement
008    
009    public final class ZLockTable
010        implements ZStatement
011    {
012    
013        public ZLockTable()
014        {
015            nowait_ = false;
016            lockMode_ = null;
017            tables_ = null;
018        }
019    
020        public void addTables(Vector vector)
021        {
022            tables_ = vector;
023        }
024    
025        public Vector getTables()
026        {
027            return tables_;
028        }
029    
030        public void setLockMode(String s)
031        {
032            lockMode_ = new String(s);
033        }
034    
035        public String getLockMode()
036        {
037            return lockMode_;
038        }
039    
040        public boolean isNowait()
041        {
042            return nowait_;
043        }
044    
045        boolean nowait_;
046        String lockMode_;
047        Vector tables_;
048    }