package com.framsticks.gui.controls; import com.framsticks.gui.Frame; import com.framsticks.structure.Path; import com.framsticks.util.ExceptionHandler; public interface ControlOwner extends ExceptionHandler { public Path getCurrentPath(); public Frame getFrame(); public boolean onValueChange(ValueControl control, Object newValue); }