1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 23:55:26 +02:00

[180562] not implementing ISystemMessages

This commit is contained in:
David McKnight 2007-04-03 16:31:01 +00:00
parent 076735e8f8
commit 1f2585a633
5 changed files with 7 additions and 8 deletions

View file

@ -60,7 +60,7 @@ import org.eclipse.swt.widgets.Widget;
/**
* A dialog that allows the user to work with the compile commands for the compile actions in this subsystem.
*/
public class SystemWorkWithCompileCommandsDialog extends SystemPromptDialog implements ISystemMessages, SelectionListener, ISystemCompileCommandEditPaneListener, IMenuListener, Runnable,
public class SystemWorkWithCompileCommandsDialog extends SystemPromptDialog implements SelectionListener, ISystemCompileCommandEditPaneListener, IMenuListener, Runnable,
ISystemCompileCommandEditPaneHoster {
protected Button applyButton, revertButton, newSrcTypeButton, rmvSrcTypeButton;
protected Combo profileCombo;

View file

@ -50,7 +50,7 @@ import org.w3c.dom.Node;
/**
* Base class for tree views for both actions and types.
*/
public class SystemUDBaseTreeView extends TreeViewer implements IMenuListener, IDoubleClickListener, ISystemMessages, ISystemUDTreeView {
public class SystemUDBaseTreeView extends TreeViewer implements IMenuListener, IDoubleClickListener, ISystemUDTreeView {
protected Composite parent;
protected MenuManager menuMgr;
protected SystemUDBaseManager docManager;
@ -394,7 +394,7 @@ public class SystemUDBaseTreeView extends TreeViewer implements IMenuListener, I
* Return message for delete confirmation
*/
protected SystemMessage getDeleteConfirmationMessage() {
return RSEUIPlugin.getPluginMessage(MSG_CONFIRM_DELETE_USERACTION);
return RSEUIPlugin.getPluginMessage(ISystemMessages.MSG_CONFIRM_DELETE_USERACTION);
}
/**

View file

@ -16,6 +16,7 @@ import org.eclipse.rse.core.model.ISystemProfile;
import org.eclipse.rse.core.subsystems.ISubSystem;
import org.eclipse.rse.core.subsystems.ISubSystemConfiguration;
import org.eclipse.rse.services.clientserver.messages.SystemMessage;
import org.eclipse.rse.ui.ISystemMessages;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.swt.widgets.Composite;
@ -70,7 +71,7 @@ public class SystemUDTypeTreeView extends SystemUDBaseTreeView {
* Return message for delete confirmation
*/
protected SystemMessage getDeleteConfirmationMessage() {
return RSEUIPlugin.getPluginMessage(MSG_CONFIRM_DELETE_USERTYPE);
return RSEUIPlugin.getPluginMessage(ISystemMessages.MSG_CONFIRM_DELETE_USERTYPE);
}
/**

View file

@ -15,7 +15,6 @@ import org.eclipse.rse.core.subsystems.ISubSystem;
import org.eclipse.rse.core.subsystems.ISubSystemConfiguration;
import org.eclipse.rse.internal.ui.SystemResources;
import org.eclipse.rse.model.SystemStartHere;
import org.eclipse.rse.ui.ISystemMessages;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.SystemWidgetHelpers;
import org.eclipse.rse.ui.dialogs.SystemPromptDialog;
@ -41,7 +40,7 @@ import org.eclipse.swt.widgets.Widget;
* A dialog that allows the user to manipulate their user defined actions for a
* given subsystem factory.
*/
public class SystemWorkWithUDAsDialog extends SystemPromptDialog implements ISystemUDWorkWithDialog,ISystemMessages, ISystemUDAEditPaneHoster, Listener, SelectionListener,
public class SystemWorkWithUDAsDialog extends SystemPromptDialog implements ISystemUDWorkWithDialog, ISystemUDAEditPaneHoster, Listener, SelectionListener,
Runnable {
// Changes:
// June 2002, Phil Coulthard: Added prompt for parent profile, similar to New Connection and New Filter Pool wizards.

View file

@ -18,7 +18,6 @@ import org.eclipse.rse.core.model.ISystemProfile;
import org.eclipse.rse.core.subsystems.ISubSystem;
import org.eclipse.rse.core.subsystems.ISubSystemConfiguration;
import org.eclipse.rse.internal.ui.SystemResources;
import org.eclipse.rse.ui.ISystemMessages;
import org.eclipse.rse.ui.RSEUIPlugin;
import org.eclipse.rse.ui.SystemWidgetHelpers;
import org.eclipse.rse.ui.dialogs.SystemPromptDialog;
@ -39,7 +38,7 @@ import org.eclipse.swt.widgets.Widget;
* A dialog that allows the user to manipulate their user defined actions for a given subsystem factory.
* <p>
*/
public class SystemWorkWithUDTypeDialog extends SystemPromptDialog implements ISystemUDWorkWithDialog, ISystemMessages, Listener, Runnable, ISystemUDAEditPaneHoster {
public class SystemWorkWithUDTypeDialog extends SystemPromptDialog implements ISystemUDWorkWithDialog, Listener, Runnable, ISystemUDAEditPaneHoster {
protected Shell shell; // shell hosting this viewer
protected ResourceBundle rb;
protected ISubSystem subsystem;