Skip to content

Commit

Permalink
Import SlicingOptions from P2
Browse files Browse the repository at this point in the history
  • Loading branch information
laeubi committed Feb 16, 2024
1 parent 99023f3 commit 86bf842
Showing 1 changed file with 95 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/*******************************************************************************
* Copyright (c) 2009, 2017 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.p2.internal.repository.tools;

import java.util.Hashtable;
import java.util.Map;

public class SlicingOptions {
private boolean includeOptionalDependencies = true;
private boolean everythingGreedy = true;
private boolean forceFilterTo = true;
private boolean considerStrictDependencyOnly = false;
private boolean followOnlyFilteredRequirements = false;
private boolean latestVersion = false;
private boolean resolve = false;

private Map<String, String> filter = null;

public boolean includeOptionalDependencies() {
return includeOptionalDependencies;
}

public void includeOptionalDependencies(boolean optional) {
this.includeOptionalDependencies = optional;
}

public boolean isEverythingGreedy() {
return everythingGreedy;
}

public void everythingGreedy(boolean greedy) {
this.everythingGreedy = greedy;
}

public boolean forceFilterTo() {
return forceFilterTo;
}

public void forceFilterTo(boolean forcedTo) {
this.forceFilterTo = forcedTo;
}

public boolean considerStrictDependencyOnly() {
return considerStrictDependencyOnly;
}

public void considerStrictDependencyOnly(boolean strict) {
this.considerStrictDependencyOnly = strict;
}

public Map<String, String> getFilter() {
if (filter == null)
filter = new Hashtable<>();
return filter;
}

public void setFilter(Map<String, String> filter) {
this.filter = filter;
}

public void followOnlyFilteredRequirements(boolean onlyFiltered) {
this.followOnlyFilteredRequirements = onlyFiltered;
}

public boolean followOnlyFilteredRequirements() {
return followOnlyFilteredRequirements;
}

public boolean latestVersionOnly() {
return latestVersion;
}

public void latestVersionOnly(boolean latest) {
this.latestVersion = latest;
}

public void installTimeLikeResolution(boolean resolve) {
this.resolve = resolve;
}

public boolean getInstallTimeLikeResolution() {
return resolve;
}
}

0 comments on commit 86bf842

Please sign in to comment.