Introduction
Statistics
Contact
Development
Disclaimer
Help
gopher.661.org home page
package mechanique;
public class WonderBean
{
private String content;
public WonderBean()
{
}
public void setContent(String c)
{
this.content = c;
}
public String getContent()
{
return this.content;
}
}