]> gerrit.simantics Code Review - simantics/platform.git/blob - HoverImpl.java
c28bd3e8cecce99aec7661b1d8ad0c82d47f8d14
[simantics/platform.git] / HoverImpl.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.ElementHints;
15 import org.simantics.g2d.element.IElement;
16 import org.simantics.g2d.element.handler.Hover;
17
18 /**
19  * @author Teemu Lempinen <teemu.lempinen@vtt.fi>
20  */
21 public class HoverImpl implements Hover {
22
23     private static final long serialVersionUID = -9213121907160499031L;
24
25     @Override
26     public boolean isHovering(IElement e) {
27         return Boolean.TRUE.equals(e.getHint(ElementHints.KEY_HOVER));
28     }
29
30     @Override
31     public void setHover(IElement e, boolean hover) {
32         e.setHint(ElementHints.KEY_HOVER, hover);
33     }
34
35 }