Revision 9154 branches/v10/extensions/extWFS2/src/com/iver/cit/gvsig/gui/panels/WFSParamsPanel.java

View differences:

WFSParamsPanel.java
2 2

  
3 3
import java.awt.event.FocusEvent;
4 4
import java.awt.event.FocusListener;
5
import java.io.ObjectInputStream.GetField;
6 5
import java.util.prefs.Preferences;
7 6

  
8 7
import javax.swing.JTabbedPane;
......
63 62
 *
64 63
 * $Id$
65 64
 * $Log$
66
 * Revision 1.10.2.4  2006-11-28 08:03:03  jorpiell
67
 * Se escribe el filtro al abrir la ventana
65
 * Revision 1.10.2.5  2006-12-04 09:42:57  ppiqueras
66
 * 1 Bug corregido. (subo este fichero por si acaso he modificado algo en él para corregir el bug)
68 67
 *
69
 * Revision 1.10.2.3  2006/11/17 11:28:45  ppiqueras
70
 * Corregidos bugs y añadida nueva funcionalidad.
68
 * Revision 1.22  2006/12/04 08:59:47  ppiqueras
69
 * Algunos bugs corregidos. A cambio hay 2 bugs relacionados que todavía no han sido corregidos (ver PHPCollab) (los tiene asignados Jorge).
71 70
 *
71
 * Revision 1.21  2006/11/28 08:05:13  jorpiell
72
 * Se escribe la query en la pesta?a del filtro
73
 *
72 74
 * Revision 1.20  2006/11/14 13:45:49  ppiqueras
73 75
 * Añadida pequeña funcionalidad:
74 76
 * Cuando se pulsa el botón "Aplicar", (al seleccionar un nuevo filtro), si el árbol de campos posee alguno seleccionado, actualiza los valores (con los nuevos), asociados a éste campo seleccionado.
......
139 141
	public	static Preferences fPrefs = Preferences.userRoot().node( "gvsig.wcs-wizard" );
140 142
	private WFSInfoPanel infoPanel;
141 143
	private int indFields;
142
	private int indFormat;
143 144
	private int indFilter;
144 145
	private int indArea;
145 146
	
......
583 584
	 * @see WFSFilterPanel#setWFSFilterPanelIsAsTabForWFSLayersLoad(boolean)
584 585
	 */
585 586
	public void setWFSFilterPanelIsAsTabForWFSLayersLoad(boolean b) {
586
		this.filterPanel.setWFSFilterPanelIsAsTabForWFSLayersLoad(b);
587
	}	
587
		this.getFilterPanel().setWFSFilterPanelIsAsTabForWFSLayersLoad(b);
588
	}
589
	
590
	/**
591
	 * @see WFSFilterPanel#getWFSFilterPanelIsAsTabForWFSLayersLoad()
592
	 */
593
	public boolean getWFSFilterPanelIsAsTabForWFSLayersLoad() {
594
		return this.getFilterPanel().getWFSFilterPanelIsAsTabForWFSLayersLoad();
595
	}
596
	
597
	/**
598
	 * @see WFSSelectAttributesPanel#getAttributesSelectedOfSameLayerHasChanged()
599
	 */
600
	public boolean getAttributesSelectedOfSameLayerHasChanged() {
601
		return this.getAttributesPanel().getAttributesSelectedOfSameLayerHasChanged();
602
	}
603
	
604
	/**
605
	 * @see WFSSelectAttributesPanel#resetAttributesSelectedOfSameLayerHasChanged()
606
	 */
607
	public void resetAttributesSelectedOfSameLayerHasChanged() {
608
		this.getAttributesPanel().resetAttributesSelectedOfSameLayerHasChanged();
609
	}
588 610
}

Also available in: Unified diff