]> git.sesse.net Git - vlc/blob - bindings/java-gcj/JVLCFloatVariable.java
Fix incorrect hash size limit
[vlc] / bindings / java-gcj / JVLCFloatVariable.java
1 public class JVLCFloatVariable extends JVLCVariable {
2
3     public JVLCFloatVariable(String name, float value) {
4         super(name);
5         this.value = new Float(value);
6     }
7
8     public float getFloatValue() {
9         return ((Float)value).floatValue();
10     }
11
12 }