Revision 866 org.gvsig.proj/branches/refactor2018/org.gvsig.proj/org.gvsig.proj.swing/org.gvsig.proj.swing.api/src/main/java/org/gvsig/proj/swing/CoordinateTransformationSelectorComponent.java

View differences:

CoordinateTransformationSelectorComponent.java
23 23
package org.gvsig.proj.swing;
24 24

  
25 25
import org.gvsig.proj.CoordinateTransformation;
26

  
27
import java.awt.event.ActionListener;
28

  
26 29
import org.gvsig.proj.CoordinateReferenceSystem;
27 30
import org.gvsig.tools.swing.api.Component;
28 31

  
......
121 124
    * @see #setTargetCoordinateReferenceSystem(CoordinateReferenceSystem, boolean)
122 125
    */
123 126
   boolean isTargetCoordinateReferenceSystemEditable();
127
   
128
   
129
   /**
130
    * Adds a listener to be notified when a CoordinateTransformation is selected
131
    * 
132
    * @param listener
133
    */
134
   void addCoordinateTransformationSelectionListener(ActionListener listener);
135
   
136
   
137
   /**
138
    * Enables an alphanumeric filter to refine the list of CoordinateTransformations
139
    * to those matching the provided search string.
140
    * 
141
    * @param searchString
142
    */
143
   void enableAlphanumericFilter(String searchString);
124 144
}

Also available in: Unified diff