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