source: java/main/src/main/java/com/framsticks/gui/controls/ControlOwner.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 344 bytes
Line 
1package com.framsticks.gui.controls;
2
3
4import com.framsticks.gui.Frame;
5import com.framsticks.structure.Path;
6import com.framsticks.util.ExceptionHandler;
7
8public interface ControlOwner extends ExceptionHandler {
9
10        public Path getCurrentPath();
11        public Frame getFrame();
12        public boolean onValueChange(ValueControl control, Object newValue);
13
14}
Note: See TracBrowser for help on using the repository browser.