OO gone wrong...
public class ObjectWrapper
{
private Object object;
public ObjectWrapper(Object object)
{
this.object = object;
}
public Object getObject()
{
return object;
}
}
As found here ;)
public class ObjectWrapper
{
private Object object;
public ObjectWrapper(Object object)
{
this.object = object;
}
public Object getObject()
{
return object;
}
}
As found here ;)
Join the discussion! Leave a comment through the comment form below!
Feel free to leave a comment on this site. You can use Textile and Emoticons. Your email address is only used to show a gravatar. Please stay on-topic and use common decency. Spammers will be shot in front of a live studio audience.
If you plan on posting code, use pastebin please and post a URL to the code. The comment processing doesn't deal very well with code. Sorry for the inconvenience.
Human comment spammers: don't bother posting your crap here. Comments are moderated and I won't let any of your shit through.
At 24 June '06 - 03:41 Blues wrote:
At 25 June '06 - 03:08 stefan wrote:
At 25 June '06 - 07:13 Marco wrote:
public class BeingJohnMalkovich
{
private Malkovich malkovich;
public JohnMalkovich(Malkovich malkovich)
{
this.malkovich = malkovich;
}
public Malkovich getMalkovich()
{
return malkovich;
}
}
At 15 December '06 - 02:28 Ken Dryden wrote: