Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/newconnection/IRSENewConnectionWizardDescriptor.java')
-rw-r--r--rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/newconnection/IRSENewConnectionWizardDescriptor.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/newconnection/IRSENewConnectionWizardDescriptor.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/newconnection/IRSENewConnectionWizardDescriptor.java
deleted file mode 100644
index 79c6285bb..000000000
--- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/wizards/newconnection/IRSENewConnectionWizardDescriptor.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007 Wind River Systems, Inc. and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Uwe Stieber (Wind River) - initial API and implementation.
- *******************************************************************************/
-package org.eclipse.rse.ui.wizards.newconnection;
-
-import org.eclipse.rse.ui.wizards.registries.IRSEWizardDescriptor;
-
-/**
- * RSE new connection wizard descriptor.
- */
-public interface IRSENewConnectionWizardDescriptor extends IRSEWizardDescriptor {
-
- /**
- * Returns a semicolon separated list of system type id's this
- * wizard is used for. The system type id's might contain wildcards
- * ('*' or '?'). The method will return <code>null</code> if the
- * attribute is not set.
- *
- * @return The list of system type id's or <code>null</code>.
- */
- public String getDeclaredSystemTypeIds();
-
- /**
- * Returns the list of system type ids the wizard is supporting.
- * The list is combined from the list of currently registered
- * system types cleaned up by the ones not matching the declared
- * system type ids.
- *
- * @return The list of supported system type ids. May be empty,
- * but never <code>null</code>.
- */
- public String[] getSystemTypeIds();
-}

Back to the top