001package gudusoft.gsqlparser.nodes; 002/* 003 * Date: 2010-12-31 004 * Time: 10:54:28 005 */ 006 007public class TCreateDirectorySqlNode extends TParseTreeNode { 008 private TObjectName directoryName = null; 009 private TConstant path = null; 010 011 public TObjectName getDirectoryName() { 012 return directoryName; 013 } 014 015 public TConstant getPath() { 016 return path; 017 } 018 019 public void init(Object arg1, Object arg2){ 020 this.directoryName = (TObjectName)arg1; 021 this.path = (TConstant)arg2; 022 023 } 024 025}