Sha256: 43d249cf31fb09905db3fbeadf93962964b4cd054efb7627dc6904be115b4f72
Contents?: true
Size: 811 Bytes
Versions: 25
Compression:
Stored size: 811 Bytes
Contents
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package monkstone.slider; /** * * @author Martin Prout */ public interface Slider { /** * */ void dispose(); /** * */ void draw(); /** * */ void hideBackground(); /** * */ void hideLabel(); /** * */ void hideNumbers(); /** * * @param s */ void labelSize(int s); /** * * @return value */ float readValue(); /** * * @param value */ void setValue(float value); /** * */ void showLabel(); /** * */ void showNumbers(); }
Version data entries
25 entries across 25 versions & 1 rubygems