package com.framsticks.gui.controls; import javax.swing.JPanel; import com.framsticks.gui.TreeNode; public interface ControlOwner { public JPanel getPanel(); public TreeNode getCurrentTreeNode(); }