1 /*(Header: NiLOSTEP / xlSQL)2 3 Copyright (C) 2004 NiLOSTEP Information Sciences, all 4 rights reserved.5 6 This program is licensed under the terms of the GNU 7 General Public License.You should have received a copy 8 of the GNU General Public License along with this 9 program;10 */11 12 package com.nilostep.xlsql.sql;13 14 import com.nilostep.xlsql.database.*;15 16 import java.sql.*;17 18 /**19 * DOCUMENT ME!20 * 21 * @author Jim Caprioli22 */23 public class xlSqlNull implements xlSqlCommand {24 //~ Instance variables ·····················································25 26 27 /**28 * TODO: javadoc29 *30 * @return true if allowed31 *32 * @throws SQLException33 */34 public boolean execAllowed() throws SQLException {35 boolean ret = true;36 return ret;37 }38 39 /**40 * TODO: javadoc41 *42 * @throws SQLException43 */44 public void execute() throws SQLException {45 ;46 }47 }