]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/property/PropertyComparable.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / property / PropertyComparable.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.common.property;
13
14 /**
15  * @author Tuukka Lehtonen
16  */
17 public interface PropertyComparable {
18
19     /**
20      * @return a hash code calculated from the data parts that identify the
21      *         subject and the property, not the value of the property
22      */
23     int propertyHashCode();
24
25     /**
26      * Tells whether this property represents the exact same property of the
27      * same subject, regardless of the value of the property.
28      * 
29      * @param o another object (property)
30      * @return <code>true</code> if both represent the same property of the same
31      *         subject
32      */
33     boolean propertyEquals(Object o);
34
35 }