merge the formfield patch from ooo-build
[ooovba.git] / scripting / examples / java / Newsgroup / NewsGroup.java
blobca78954536852ac489a57a709656af1ed4b6e78f
1 public class NewsGroup
4 private String hostname = "";
5 private String newsgroupName = "";
7 public NewsGroup( String host, String group )
9 hostname = host;
10 newsgroupName = group;
13 public String getHostName()
15 return hostname;
18 public String getNewsgroupName()
20 return newsgroupName;