Revision 38382 branches/v2_0_0_prep/extensions/org.gvsig.daltransform.app.mainplugin/src/main/java/org/gvsig/daltransform/swing/DataTransformGui.java

View differences:

DataTransformGui.java
91 91
	 * The minimum size for the panels. 
92 92
	 */
93 93
	public Dimension getMinDimension();
94

  
95
	/**
96
	 * This method will be called right before the transformation is applied
97
	 * to let the instance of this interface perform some action.
98
	 * 
99
	 * @param store the {@link FeatureStore} to be transformed
100
	 * @param transform the {@link FeatureStoreTransform} to be applied
101
	 */
102
	public void beforeApplyingTransform(FeatureStore store, FeatureStoreTransform transform);
103
	
104
	/**
105
     * This method will be called right after the transformation is applied
106
     * to let the instance of this interface perform some action.
107
     * 
108
     * @param store the {@link FeatureStore} that has been transformed
109
     * @param transform the {@link FeatureStoreTransform} that has been applied
110
	 */
111
	public void afterApplyingTransform(FeatureStore store, FeatureStoreTransform transform);
112

  
94 113
}
95 114

  

Also available in: Unified diff