Revision 18354

View differences:

trunk/libraries/libRaster/src/org/gvsig/raster/grid/filter/convolution/ConvolutionUI.java
124 124
	 * Obtiene el bot?n de test
125 125
	 * @return JPanel
126 126
	 */
127
	public JButton getButtonTest() {
127
	private JButton getButtonTest() {
128 128
		if(buttonTest == null) {
129 129
			buttonTest = new JButton("Test");
130 130
			buttonTest.addActionListener(this);
......
136 136
	 * Obtiene el panel con el bot?n de test
137 137
	 * @return JPanel
138 138
	 */
139
	public JPanel getPanelTest() {
139
	private JPanel getPanelTest() {
140 140
		if(panelTest == null)
141 141
			panelTest = new JPanel();
142 142
		return panelTest;
......
146 146
	 * Obtiene el panel de la matriz y el selector
147 147
	 * @return JPanel
148 148
	 */
149
	public JPanel getPanelMatrixSelector() {
149
	private JPanel getPanelMatrixSelector() {
150 150
		if(panelMatrixSelector == null)
151 151
			panelMatrixSelector = new JPanel();
152 152
		return panelMatrixSelector;
......
156 156
	 * Obtiene el panel de la matriz
157 157
	 * @return JPanel
158 158
	 */
159
	public JPanel getPanelMatrix() {
159
	private JPanel getPanelMatrix() {
160 160
		if(panelMatrix == null)
161 161
			panelMatrix = new JPanel();
162 162
		return panelMatrix;
......
166 166
	 * Obtiene el panel que contiene el selector de lado
167 167
	 * @return JPanel
168 168
	 */
169
	public JPanel getPanelSelector() {
169
	private JPanel getPanelSelector() {
170 170
		if(panelSelector == null) {
171 171
			panelSelector = new JPanel();
172 172
		}
......
177 177
	 * Obtiene el selector de lado
178 178
	 * @return JComboBox
179 179
	 */
180
	public JComboBox getSelector() {
180
	private JComboBox getSelector() {
181 181
		if(selector == null) {
182 182
			selector = new JComboBox(new String[]{"3", "5"});
183 183
			selector.setSelectedIndex(1);
......
190 190
	 * Obtiene el selector de lado
191 191
	 * @return JComboBox
192 192
	 */
193
	public JFormattedTextField getDivisor() {
193
	private JFormattedTextField getDivisor() {
194 194
		if(divisor == null) {
195 195
			NumberFormat doubleDisplayFormat = NumberFormat.getNumberInstance();
196 196
			doubleDisplayFormat.setMinimumFractionDigits(0);

Also available in: Unified diff