]> git.sesse.net Git - vlc/blob - bindings/java-gcj/JVLCIntVariable.java
Update svn:ignore to ignore vlc aliases (e.g. cvlc, rvlc, etc).
[vlc] / bindings / java-gcj / JVLCIntVariable.java
1 public class JVLCIntVariable extends JVLCVariable {
2
3
4     public JVLCIntVariable(String name, int value) {
5         super(name);
6         this.value = new Integer(value);
7     }
8
9     public int getIntValue() {
10         return ((Integer)value).intValue();
11     }
12
13 }