]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/impl/StaticSymbolImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / impl / StaticSymbolImpl.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.g2d.element.handler.impl;
13
14 import org.simantics.g2d.element.handler.StaticSymbol;
15 import org.simantics.g2d.image.Image;
16
17 /**
18  * A {@link StaticSymbol} implementation that provides a single static image
19  * provided to it during construction.
20  */
21 public class StaticSymbolImpl implements StaticSymbol {
22
23     private static final long serialVersionUID = 9062542343545213793L;
24
25     private final Image i;
26
27     public StaticSymbolImpl(Image i) {
28         if (i == null)
29             throw new IllegalArgumentException("null arg");
30         this.i = i;
31     }
32
33     @Override
34     public Image getImage() {
35         return i;
36     }
37
38     @Override
39     public int hashCode() {
40         return i.hashCode();
41     }
42
43     @Override
44     public boolean equals(Object obj) {
45         if (this == obj)
46             return true;
47         if (obj == null)
48             return false;
49         if (getClass() != obj.getClass())
50             return false;
51         StaticSymbolImpl other = (StaticSymbolImpl) obj;
52         return i.equals(other.i);
53     }
54
55 }