Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/archive/org/eclipse/jst/jee/archive/IArchiveFactory.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/archive/org/eclipse/jst/jee/archive/IArchiveFactory.java40
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/archive/org/eclipse/jst/jee/archive/IArchiveFactory.java b/plugins/org.eclipse.jst.j2ee.core/archive/org/eclipse/jst/jee/archive/IArchiveFactory.java
deleted file mode 100644
index 86ad66fe8..000000000
--- a/plugins/org.eclipse.jst.j2ee.core/archive/org/eclipse/jst/jee/archive/IArchiveFactory.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2007 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
- *******************************************************************************/
-package org.eclipse.jst.jee.archive;
-
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.jst.jee.archive.internal.ArchiveFactoryImpl;
-
-/**
- * {@link IArchiveFactory} is the where clients should open and save archives.
- *
- * This interface is not intended to be implemented or subclassed by clients.
- * Clients should access through {@link #INSTANCE}
- */
-public interface IArchiveFactory {
-
- /**
- * A concrete implementation of {@link IArchiveFactory}.
- */
- IArchiveFactory INSTANCE = new ArchiveFactoryImpl();
-
- public IArchive openArchive(IPath archivePath) throws ArchiveOpenFailureException;
-
- public IArchive openArchive(ArchiveOptions archiveOptions) throws ArchiveOpenFailureException;
-
- public void closeArchive(IArchive archive);
-
- public void saveArchive(IArchive archive, IPath outputPath, IProgressMonitor monitor) throws ArchiveSaveFailureException;
-
- public void saveArchive(IArchive archive, ArchiveOptions archiveOptions, IProgressMonitor monitor) throws ArchiveSaveFailureException;
-
-}

Back to the top