comparison src/samer/core_/NumberViewer.java @ 0:bf79fb79ee13

Initial Mercurial check in.
author samer
date Tue, 17 Jan 2012 17:50:20 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:bf79fb79ee13
1 package samer.core;
2
3 /** Interface for something something which is a Viewer and
4 has a settable number. */
5 public interface NumberViewer extends Viewer, NumberSink
6 {
7 // creation flags
8 final static int SLIDER=0x01;
9 final static int TEXT=0x02;
10 final static int INTEGER=0x04;
11 final static int BOUNDED=0x08;
12 }