stdmql.lang
Class AbstractCall

java.lang.Object
  extended by stdmql.lang.AbstractCall

public abstract class AbstractCall
extends java.lang.Object


Field Summary
 DataRetreiver data
          The input data (from the DMQL query executed by the user)
 java.lang.String operatorName
          The name of the operator requested (from the DMQL query executed by the user)
 java.util.Hashtable<java.lang.String,java.lang.Object> otherParams
          The name of the operator requested (from the DMQL query executed by the user)
 java.lang.String tableName
          The name of the table where the result must be stored (from the DMQL query executed by the user)
 
Constructor Summary
AbstractCall()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

tableName

public java.lang.String tableName
The name of the table where the result must be stored (from the DMQL query executed by the user)


operatorName

public java.lang.String operatorName
The name of the operator requested (from the DMQL query executed by the user)


otherParams

public java.util.Hashtable<java.lang.String,java.lang.Object> otherParams
The name of the operator requested (from the DMQL query executed by the user)


data

public DataRetreiver data
The input data (from the DMQL query executed by the user)

Constructor Detail

AbstractCall

public AbstractCall()