View Javadoc

1   package pl.aislib.tools.mapping.structure;
2   
3   
4   /***
5    * An abstract class extended by all Operations children.
6    * 
7    * @author <a href="mailto:milosz@ais.pl">Milosz Tylenda</a>, AIS.PL
8    * @version $Revision: 1.1 $
9    */
10  public abstract class Operation {
11  
12    private SqlQuery   sqlQuery;
13    private JavaMethod javaMethod;
14    
15    public SqlQuery getSqlQuery() {
16      return sqlQuery;
17    }
18  
19    public void setSqlQuery(SqlQuery sqlQuery){
20      this.sqlQuery = sqlQuery;
21    }
22  
23    public JavaMethod getJavaMethod() {
24      return javaMethod;
25    }
26  
27    public void setJavaMethod(JavaMethod javaMethod) {
28      this.javaMethod = javaMethod;
29    }
30    
31  }
32  
33  /***
34   * $Log: Operation.java,v $
35   * Revision 1.1  2004/09/10 16:08:21  milosz
36   * Initial commit.
37   *
38   */