source:
trunk/icedtea-web/plugin/tests/LiveConnect/DummyObject.java
Last change on this file was 348, checked in by , 13 years ago | |
---|---|
File size: 261 bytes |
Line | |
---|---|
1 | public 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.