samer@0: package samer.core; samer@0: samer@0: /** Interface for something something which is a Viewer and samer@0: has a settable number. */ samer@0: public interface NumberViewer extends Viewer, NumberSink samer@0: { samer@0: // creation flags samer@0: final static int SLIDER=0x01; samer@0: final static int TEXT=0x02; samer@0: final static int INTEGER=0x04; samer@0: final static int BOUNDED=0x08; samer@0: }