annotate src/samer/core_/NumberViewer.java @ 8:5e3cbbf173aa tip

Reorganise some more
author samer
date Fri, 05 Apr 2019 22:41:58 +0100
parents bf79fb79ee13
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 }