Revision 7695

View differences:

branches/v10/applications/appgvSIG/src/com/iver/cit/gvsig/gui/panels/CRSSelectPanel.java
48 48
import org.cresques.cts.IProjection;
49 49
import org.gvsig.gui.beans.swing.JButton;
50 50

  
51
import com.iver.cit.gvsig.gui.WizardPanel;
52

  
53 51
/**
54 52
 * 
55 53
 * @author Luis W. Sevilla <sevilla_lui@gva.es>
56 54
 */
57 55
public abstract class CRSSelectPanel extends JPanel {
58 56
	private static Class panelClass = ProjChooserPanel.class; 
57
	private boolean transPanelActive = false;
59 58

  
60 59
	protected ActionListener actionListener = null;
61 60
	
......
106 105
	public void addActionListener(ActionListener actionListener) {
107 106
		this.actionListener = actionListener;
108 107
	}
108

  
109
	public boolean isTransPanelActive() {
110
		return transPanelActive;
111
	}
112

  
113
	public void setTransPanelActive(boolean transPanelActive) {
114
		this.transPanelActive = transPanelActive;
115
	}
109 116
	
110 117
}

Also available in: Unified diff