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