Revision 9529 branches/piloto3d/applications/appgvSIG/src/com/iver/cit/gvsig/gui/filter/FilterDialog.java

View differences:

FilterDialog.java
67 67
import com.iver.andami.PluginServices;
68 68
import com.iver.andami.messages.NotificationManager;
69 69
import com.iver.andami.ui.mdiManager.IWindow;
70
import com.iver.andami.ui.mdiManager.IWindowListener;
70 71
import com.iver.andami.ui.mdiManager.WindowInfo;
71
import com.iver.andami.ui.mdiManager.IWindowListener;
72
import com.iver.cit.gvsig.gui.Table;
72
import com.iver.cit.gvsig.project.documents.table.gui.Table;
73 73
import com.iver.utiles.DefaultCharSet;
74 74
import com.iver.utiles.StringUtilities;
75 75
import com.iver.utiles.exceptionHandling.ExceptionHandlingSupport;
......
121 121
	private javax.swing.JScrollPane jScrollPane2 = null;
122 122
	private javax.swing.JButton btnParentesis = null;
123 123
	private ExceptionHandlingSupport exceptionHandlingSupport = new ExceptionHandlingSupport();
124
	
125
	private String title;
124 126

  
125 127
	/**
126 128
	 * This is the default constructor
127 129
	 */
128
	public FilterDialog() {
130
	public FilterDialog(String _title) {		
129 131
		super();
130 132
		initialize();
133
		title = _title;
131 134
	}
135
	/**
136
	 * This is the default constructor
137
	 */
138
	public FilterDialog() {		
139
		super();
140
		initialize();
141
	}
132 142

  
133 143
	/**
134 144
	 * DOCUMENT ME!
......
1055 1065
		WindowInfo vi = new WindowInfo(WindowInfo.ICONIFIABLE);
1056 1066
		vi.setWidth(480);
1057 1067
		vi.setHeight(362);
1058

  
1068
		vi.setTitle(PluginServices.getText( this, "filtro") + " (" + title + ")");
1059 1069
		return vi;
1060 1070
	}
1061 1071

  

Also available in: Unified diff