Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java
new file mode 100644
index 000000000..15f2a065c
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java
@@ -0,0 +1,55 @@
+/*******************************************************************************
+ * Copyright (c) 2013 Red Hat, 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:
+ * Red Hat, Inc. - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.equinox.p2.operations;
+
+import org.eclipse.equinox.internal.p2.director.ProfileChangeRequest;
+
+//TODO Javadoc
+public class Remedy {
+
+ private RemedyConfig config;
+ private ProfileChangeRequest request;
+ private int beingInstalledRelaxedWeight;
+ private int installationRelaxedWeight;
+
+ public RemedyConfig getConfig() {
+ return config;
+ }
+
+ public void setConfig(RemedyConfig config) {
+ this.config = config;
+ }
+
+ public ProfileChangeRequest getRequest() {
+ return request;
+ }
+
+ public void setRequest(ProfileChangeRequest request) {
+ this.request = request;
+ }
+
+ public int getBeingInstalledRelaxedWeight() {
+ return beingInstalledRelaxedWeight;
+ }
+
+ public void setBeingInstalledRelaxedWeight(int beingInstalledRelaxedWeight) {
+ this.beingInstalledRelaxedWeight = beingInstalledRelaxedWeight;
+ }
+
+ public int getInstallationRelaxedWeight() {
+ return installationRelaxedWeight;
+ }
+
+ public void setInstallationRelaxedWeight(int installationRelaxedWeight) {
+ this.installationRelaxedWeight = installationRelaxedWeight;
+ }
+
+}

Back to the top