package com.framsticks.gui.controls; import javax.swing.JPanel; import javax.swing.tree.TreePath; import com.framsticks.gui.Frame; import com.framsticks.util.dispatching.ExceptionResultHandler; public interface ControlOwner extends ExceptionResultHandler { public JPanel getPanel(); public TreePath getCurrentTreePath(); public Frame getFrame(); }