1 19 20 package org.netbeans.lib.ddl.impl; 21 22 import java.util.*; 23 import org.netbeans.lib.ddl.*; 24 import org.netbeans.lib.ddl.impl.*; 25 26 33 34 public class CreateView extends AbstractCommand 35 { 36 String query; 37 38 static final long serialVersionUID =-3890617111076632936L; 39 public String getQuery() 40 { 41 return query; 42 } 43 44 public void setQuery(String qry) 45 { 46 query = qry; 47 } 48 49 public Map getCommandProperties() 50 throws DDLException 51 { 52 Map args = super.getCommandProperties(); 53 args.put("query", query); return args; 55 } 56 } 57 58 69 | Popular Tags |