Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/provisional/p2/ui/policy/LicenseManager.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/provisional/p2/ui/policy/LicenseManager.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/provisional/p2/ui/policy/LicenseManager.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/provisional/p2/ui/policy/LicenseManager.java
deleted file mode 100644
index a9838f122..000000000
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/provisional/p2/ui/policy/LicenseManager.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007, 2008 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.equinox.internal.provisional.p2.ui.policy;
-
-import java.io.*;
-import org.eclipse.equinox.internal.provisional.p2.metadata.IInstallableUnit;
-
-/**
- * Abstract class for a manager which tracks which licenses have been accepted.
- *
- * @since 3.4
- */
-public abstract class LicenseManager {
-
- public abstract boolean accept(IInstallableUnit iu);
-
- public abstract boolean reject(IInstallableUnit iu);
-
- public abstract boolean isAccepted(IInstallableUnit iu);
-
- public abstract boolean hasAcceptedLicenses();
-
- /**
- *
- * @param stream
- * @throws IOException
- * @since 3.5
- */
- public abstract void write(OutputStream stream) throws IOException;
-
- /**
- *
- * @param stream
- * @throws IOException
- * @since 3.5
- */
- public abstract void read(InputStream stream) throws IOException;
-
-}

Back to the top