]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.trend/src/org/simantics/trend/impl/AnalogSignals.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.trend / src / org / simantics / trend / impl / AnalogSignals.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2011 Association for Decentralized Information Management in
3  * 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.trend.impl;
13
14 import java.awt.Graphics2D;
15 import java.awt.geom.Rectangle2D;
16
17 import org.simantics.scenegraph.g2d.G2DNode;
18
19 public class AnalogSignals extends G2DNode {
20         
21     private static final long serialVersionUID = -1293845360663772864L;
22
23     @Override
24         public void render(Graphics2D g2d) {
25                 
26         }
27
28         @Override
29         public Rectangle2D getBoundsInLocal() {
30                 // TODO Auto-generated method stub
31                 return null;
32         }
33
34 }