Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: IModel has changed method signatures in Wicket 1.3

...

Code Block
public interface IModel extends IDetachable
{
  public Object getObject(final Component component);
  public void setObject(final Component component, final Object object);
}

And the base interface IDetachable looks like this:

...