X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.browsing.ui.common%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fcommon%2FPreference.java;fp=bundles%2Forg.simantics.browsing.ui.common%2Fsrc%2Forg%2Fsimantics%2Fbrowsing%2Fui%2Fcommon%2FPreference.java;h=3aeddafd2229153772152b4a883cadc0b36d9988;hp=7bd6d901f27031c2c699709d154bdfa78212106e;hb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;hpb=24e2b34260f219f0d1644ca7a138894980e25b14 diff --git a/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/Preference.java b/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/Preference.java index 7bd6d901f..3aeddafd2 100644 --- a/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/Preference.java +++ b/bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/Preference.java @@ -1,43 +1,43 @@ -/******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management - * in Industry THTH ry. - * 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: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ -package org.simantics.browsing.ui.common; - -/** - * A generic wrapper that associates a double-based preference indicator value - * for any object. This class can be used make objects comparable. - * - * @author Tuukka Lehtonen - * - * @param the type of the object to be made comparable - */ -public class Preference implements Comparable> { - public final T object; - public final double preference; - - public Preference(T object, double preference) { - this.object = object; - this.preference = preference; - } - - @Override - public int compareTo(Preference other) { - if (preference == other.preference) - return 0; - return (preference > other.preference) ? -1 : 1; - } - - @Override - public String toString() { - return object + " with preference " + preference; - } - +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * 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: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.browsing.ui.common; + +/** + * A generic wrapper that associates a double-based preference indicator value + * for any object. This class can be used make objects comparable. + * + * @author Tuukka Lehtonen + * + * @param the type of the object to be made comparable + */ +public class Preference implements Comparable> { + public final T object; + public final double preference; + + public Preference(T object, double preference) { + this.object = object; + this.preference = preference; + } + + @Override + public int compareTo(Preference other) { + if (preference == other.preference) + return 0; + return (preference > other.preference) ? -1 : 1; + } + + @Override + public String toString() { + return object + " with preference " + preference; + } + } \ No newline at end of file