View | Details | Raw Unified | Return to bug 225506 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/rse/processes/ui/SystemProcessFilterStringEditPane.java (-6 / +5 lines)
Lines 1-5 Link Here
1
/********************************************************************************
1
/********************************************************************************
2
 * Copyright (c) 2005, 2007 IBM Corporation and others. All rights reserved.
2
 * Copyright (c) 2005, 2008 IBM Corporation and others. All rights reserved.
3
 * This program and the accompanying materials are made available under the terms
3
 * This program and the accompanying materials are made available under the terms
4
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is 
4
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is 
5
 * available at http://www.eclipse.org/legal/epl-v10.html
5
 * available at http://www.eclipse.org/legal/epl-v10.html
Lines 14-19 Link Here
14
 * Martin Oberhuber (Wind River) - [168870] refactor org.eclipse.rse.core package of the UI plugin
14
 * Martin Oberhuber (Wind River) - [168870] refactor org.eclipse.rse.core package of the UI plugin
15
 * David McKnight   (IBM)        - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
15
 * David McKnight   (IBM)        - [216252] [api][nls] Resource Strings specific to subsystems should be moved from rse.ui into files.ui / shells.ui / processes.ui where possible
16
 * David McKnight   (IBM)        - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
16
 * David McKnight   (IBM)        - [220547] [api][breaking] SimpleSystemMessage needs to specify a message id and some messages should be shared
17
 * David McKnight   (IBM)        - [225506] [api][breaking] RSE UI leaks non-API types
17
 ********************************************************************************/
18
 ********************************************************************************/
18
19
19
package org.eclipse.rse.processes.ui;
20
package org.eclipse.rse.processes.ui;
Lines 28-33 Link Here
28
import org.eclipse.rse.internal.processes.ui.SystemProcessesResources;
29
import org.eclipse.rse.internal.processes.ui.SystemProcessesResources;
29
import org.eclipse.rse.internal.processes.ui.view.SystemProcessStatesContentProvider;
30
import org.eclipse.rse.internal.processes.ui.view.SystemProcessStatesContentProvider;
30
import org.eclipse.rse.internal.ui.SystemResources;
31
import org.eclipse.rse.internal.ui.SystemResources;
32
import org.eclipse.rse.internal.ui.actions.SystemTestFilterStringAction;
31
import org.eclipse.rse.services.clientserver.messages.SimpleSystemMessage;
33
import org.eclipse.rse.services.clientserver.messages.SimpleSystemMessage;
32
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
34
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
33
import org.eclipse.rse.services.clientserver.processes.HostProcessFilterImpl;
35
import org.eclipse.rse.services.clientserver.processes.HostProcessFilterImpl;
Lines 35-41 Link Here
35
import org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcessSubSystemConfiguration;
37
import org.eclipse.rse.subsystems.processes.core.subsystem.IRemoteProcessSubSystemConfiguration;
36
import org.eclipse.rse.ui.SystemBasePlugin;
38
import org.eclipse.rse.ui.SystemBasePlugin;
37
import org.eclipse.rse.ui.SystemWidgetHelpers;
39
import org.eclipse.rse.ui.SystemWidgetHelpers;
38
import org.eclipse.rse.ui.actions.SystemTestFilterStringAction;
39
import org.eclipse.rse.ui.filters.SystemFilterStringEditPane;
40
import org.eclipse.rse.ui.filters.SystemFilterStringEditPane;
40
import org.eclipse.rse.ui.messages.SystemMessageDialog;
41
import org.eclipse.rse.ui.messages.SystemMessageDialog;
41
import org.eclipse.rse.ui.validators.ValidatorIntegerInput;
42
import org.eclipse.rse.ui.validators.ValidatorIntegerInput;
Lines 92-102 Link Here
92
    protected boolean calledFromVerify;    	
93
    protected boolean calledFromVerify;    	
93
    protected boolean dontStealFocus;
94
    protected boolean dontStealFocus;
94
	protected IRemoteProcessSubSystemConfiguration inputSubsystemConfiguration = null;
95
	protected IRemoteProcessSubSystemConfiguration inputSubsystemConfiguration = null;
95
	
96
	// actions
97
	protected SystemTestFilterStringAction testAction = null;
98
96
99
	// constants
97
98
	// constants 
100
	protected final static int SIZING_SELECTION_WIDGET_HEIGHT = 90;
99
	protected final static int SIZING_SELECTION_WIDGET_HEIGHT = 90;
101
	protected final static int SIZING_SELECTION_WIDGET_WIDTH = 145;
100
	protected final static int SIZING_SELECTION_WIDGET_WIDTH = 145;
102
101

Return to bug 225506