Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/dialog/AntFileImportWizardPage.java')
-rw-r--r--bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/dialog/AntFileImportWizardPage.java57
1 files changed, 0 insertions, 57 deletions
diff --git a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/dialog/AntFileImportWizardPage.java b/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/dialog/AntFileImportWizardPage.java
deleted file mode 100644
index ec53a3c03..000000000
--- a/bundles/org.eclipse.wst.command.env.ui/src/org/eclipse/wst/command/internal/env/ui/dialog/AntFileImportWizardPage.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2006 IBM Corporation 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:
- * IBM Corporation - initial API and implementation
- * yyyymmdd bug Email and other contact information
- * -------- -------- -----------------------------------------------------------
- *******************************************************************************/
-package org.eclipse.wst.command.internal.env.ui.dialog;
-
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.jface.viewers.IStructuredSelection;
-import org.eclipse.jface.viewers.ITreeContentProvider;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.ui.dialogs.WizardResourceImportPage;
-import org.eclipse.wst.command.internal.env.ui.EnvironmentUIMessages;
-
-public class AntFileImportWizardPage extends WizardResourceImportPage{
-
- public AntFileImportWizardPage(String pageName,
- IStructuredSelection selection) {
- super("WSAntFilesPage1", selection);//$NON-NLS-1$
- setTitle(pageName);
- setDescription(EnvironmentUIMessages.WIZARD_PAGE_DESC_ANT);
- }
-
- protected ITreeContentProvider getFileProvider() {
- return null;
- }
-
- public IPath getPath()
- {
- return getContainerFullPath();
- }
-
- protected void createSourceGroup(Composite parent) {
- //don't need source group
- }
-
- protected ITreeContentProvider getFolderProvider() {
- return null;
- }
-
- protected void createOptionsGroup(Composite parent) {
- //empty - don't want an options group
- }
-
-
-
-}
-
-
-

Back to the top