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