repo.or.cz
/
ooovba.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
merge the formfield patch from ooo-build
[ooovba.git]
/
scripting
/
examples
/
java
/
Newsgroup
/
NewsGroup.java
blob
ca78954536852ac489a57a709656af1ed4b6e78f
1
public class
NewsGroup
2
{
3
4
private
String hostname
=
""
;
5
private
String newsgroupName
=
""
;
6
7
public
NewsGroup
(
String host
,
String group
)
8
{
9
hostname
=
host
;
10
newsgroupName
=
group
;
11
}
12
13
public
String
getHostName
()
14
{
15
return
hostname
;
16
}
17
18
public
String
getNewsgroupName
()
19
{
20
return
newsgroupName
;
21
}
22
23
}