gps.core
Interface Explosion


public interface Explosion


Field Summary
static int COMPRESSION_BY_CHILD
           
static int COMPRESSION_BY_PARENT
          Compressed path variables
static int GROUP_BY_FIRST
           
static int GROUP_BY_LAST
           
 
Method Summary
 java.util.Hashtable getCompressionAttributes()
          Method to return the Hashtable containing the attributes to be displayed in a compressed Path View.
 int getCompressionBy()
          Method to indicate how the compression view is based on : Parent or Child.
 java.util.Hashtable getCompressionDisplayHeader()
          Method to return the display header which would be displayed in view.
 boolean getCompressionFlag()
          Method to indicate that whether the compression for the path view needs to be done at all or not.
 java.util.Vector getGroupByAttributes()
          Method to indicate which attributes are used to do the actual group by returns the Vector of attributes to be grouped on.
 int getGroupByCompressionDisplay()
          Method to indicate which record is shown in the compression view : First or Last the method would return Constant.FIRST or Constant.LAST
 java.util.Vector getPathCompressionDataVector(java.util.Vector whereDataVector)
          Method which is executed on the server side and returns the vector of data from a query executed.
 java.util.Vector getPathCompressionHeader(java.util.Vector whereDataVector)
          Method which is executed on the server side and returns the vector of columns from a query executed
 java.util.Vector getPathDisplayAttributes()
           
 java.util.Hashtable getPathDisplayHeader()
           
 

Field Detail

COMPRESSION_BY_PARENT

static final int COMPRESSION_BY_PARENT
Compressed path variables

See Also:
Constant Field Values

COMPRESSION_BY_CHILD

static final int COMPRESSION_BY_CHILD
See Also:
Constant Field Values

GROUP_BY_FIRST

static final int GROUP_BY_FIRST
See Also:
Constant Field Values

GROUP_BY_LAST

static final int GROUP_BY_LAST
See Also:
Constant Field Values
Method Detail

getPathDisplayAttributes

java.util.Vector getPathDisplayAttributes()

getPathDisplayHeader

java.util.Hashtable getPathDisplayHeader()

getCompressionAttributes

java.util.Hashtable getCompressionAttributes()
Method to return the Hashtable containing the attributes to be displayed in a compressed Path View. The hashtable would have the following format: " {"Parent", [a,b,c], "Child", [a,b,c]}


getCompressionFlag

boolean getCompressionFlag()
Method to indicate that whether the compression for the path view needs to be done at all or not.


getCompressionBy

int getCompressionBy()
Method to indicate how the compression view is based on : Parent or Child. the method would return Constant.PARENT or Constant.CHILD


getGroupByCompressionDisplay

int getGroupByCompressionDisplay()
Method to indicate which record is shown in the compression view : First or Last the method would return Constant.FIRST or Constant.LAST


getGroupByAttributes

java.util.Vector getGroupByAttributes()
Method to indicate which attributes are used to do the actual group by returns the Vector of attributes to be grouped on.


getCompressionDisplayHeader

java.util.Hashtable getCompressionDisplayHeader()
Method to return the display header which would be displayed in view. Returns a hastable of the format {"Parent", ["a", "b"], "Child", ["a1", "b1"]}


getPathCompressionHeader

java.util.Vector getPathCompressionHeader(java.util.Vector whereDataVector)
Method which is executed on the server side and returns the vector of columns from a query executed


getPathCompressionDataVector

java.util.Vector getPathCompressionDataVector(java.util.Vector whereDataVector)
Method which is executed on the server side and returns the vector of data from a query executed.