Anyframe Core

anyframe.core.query.ria.gauce
Interface IGauceActionCommand


public interface IGauceActionCommand

This is an interface class for adding the business logic before/after manipulating the database at GauceQueryService use. Recommand to use IGauceQueryService for manipulating the database in developing the presentation layer using the Gauce component which is a X-internet solution of the Shift Software company. When we change the GauceDataSet's value which is GauceDataSet's data format, we add the needed logic for implementation class of IGauceActionCommand's class.

Author:
Soyon Lim, Byunghoon Woo

Method Summary
 void postDelete(com.gauce.GauceDataSet dataSet, int currentRow)
          the method to change the GauceDataSet's value after delete
 void postInsert(com.gauce.GauceDataSet dataSet, int currentRow)
          After insert, the method for changing the value of GauceDataSet
 void postUpdate(com.gauce.GauceDataSet dataSet, int currentRow)
          The method for changing the GauceDataSet's value after update
 void preDelete(com.gauce.GauceDataSet dataSet, int currentRow)
          the method to change the GauceDataSet's value before delete
 void preInsert(com.gauce.GauceDataSet dataSet, int currentRow)
          Before insert, the method for changing the value of GauceDataSet
 void preUpdate(com.gauce.GauceDataSet dataSet, int currentRow)
          the method for changing the value of GauceDataSet before update
 

Method Detail

preInsert

void preInsert(com.gauce.GauceDataSet dataSet,
               int currentRow)
Before insert, the method for changing the value of GauceDataSet

Parameters:
dataSet - The GauceDataSet for inserting into the database
currentRow - The row number of GauceDataSet to change

postInsert

void postInsert(com.gauce.GauceDataSet dataSet,
                int currentRow)
After insert, the method for changing the value of GauceDataSet

Parameters:
dataSet - The GauceDataSet for inserting into the database
currentRow - The row number of GauceDataSet to change

preUpdate

void preUpdate(com.gauce.GauceDataSet dataSet,
               int currentRow)
the method for changing the value of GauceDataSet before update

Parameters:
dataSet - GauceDataSet for updating into database
currentRow - The row number of GauceDataSet to change

postUpdate

void postUpdate(com.gauce.GauceDataSet dataSet,
                int currentRow)
The method for changing the GauceDataSet's value after update

Parameters:
dataSet - The GauceDataSet for to update in the database
currentRow - The row number of GauceDataSet to change

preDelete

void preDelete(com.gauce.GauceDataSet dataSet,
               int currentRow)
the method to change the GauceDataSet's value before delete

Parameters:
dataSet - The GauceDataSet to delete in the database
currentRow - The row number of GauceDataSet to change

postDelete

void postDelete(com.gauce.GauceDataSet dataSet,
                int currentRow)
the method to change the GauceDataSet's value after delete

Parameters:
dataSet - The GauceDataSet to delete in the database
currentRow - The row number of GauceDataSet to change

Anyframe Core

Copyright © 2008-2009 Samsung SDS. All Rights Reserved.