]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scenegraph.swing/src/org/simantics/scenegraph/swing/JComponentSG.java
Merge "Added memory leak test and fixed the leak by removing references"
[simantics/platform.git] / bundles / org.simantics.scenegraph.swing / src / org / simantics / scenegraph / swing / JComponentSG.java
1 package org.simantics.scenegraph.swing;
2
3 import java.awt.Point;
4
5 import javax.swing.JComponent;
6
7 public interface JComponentSG {
8
9         JComponent getComponent();
10         boolean containsTransformed(Point p);
11         
12 }