]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.debug.ui/src/org/simantics/debug/ui/LabeledResource.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.debug.ui / src / org / simantics / debug / ui / LabeledResource.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 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.debug.ui;
13
14 import org.simantics.db.Resource;
15 import org.simantics.utils.Container;
16
17 public class LabeledResource implements Container<Resource> {
18
19         String label;
20         Resource resource;
21
22         public LabeledResource(String label, Resource resource) {
23                 assert(label!=null && resource!=null);
24                 this.label = label;
25                 this.resource = resource;
26         }
27
28         @Override
29         public Resource get() {
30                 return resource;
31         }
32         
33         @Override
34         public String toString() {
35                 return label;
36         }
37         
38         @Override
39         public int hashCode() {
40                 return resource.hashCode();
41         }
42         
43         @Override
44         public boolean equals(Object obj) {
45                 if (!(obj instanceof LabeledResource)) return false;
46                 LabeledResource other = (LabeledResource) obj; 
47                 return resource.equals(other.get());
48         }
49
50 }