repo.or.cz
/
vlc
/
vlc-skelet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hungarian translation update by Gabor Kelemen
[vlc/vlc-skelet.git]
/
bindings
/
java-gcj
/
JVLCVarValue.java
blob
46ee141264a879d422e7ee428d9f7d4a2e3a24a8
1
public class
JVLCVarValue
{
2
3
String name
;
4
int
OID
;
5
6
public
JVLCVarValue
(
String name
,
int
OID
) {
7
this
.
name
=
name
;
8
this
.
OID
=
OID
;
9
}
10
11
public
String
getName
() {
12
return
name
;
13
}
14
15
public int
getOID
() {
16
return
OID
;
17
}
18
19
}