source: trunk/icedtea-web/plugin/tests/LiveConnect/DummyObject.java

Last change on this file was 348, checked in by dmik, 13 years ago

vendor: Add icedtea-web v1.1.2 to current.

File size: 261 bytes
Line 
1public class DummyObject {
2 private String str;
3
4 public DummyObject(String s) {
5 this.str = s;
6 }
7
8 public void setStr(String s) {
9 this.str = s;
10 }
11
12 public String toString() {
13 return str;
14 }
15}
Note: See TracBrowser for help on using the repository browser.