Deprecated Methods |
org.apache.wicket.Component.callOnBeforeRenderIfNotVisible()
this was only useful for controlling visibility from inside
Component.onBeforeRender() , with the addition of Component.onConfigure() this is
now obsolete. |
org.apache.wicket.extensions.yui.calendar.DatePicker.configureWidgetProperties(Map)
Please use DatePicker.configure(Map) instead. |
org.apache.wicket.protocol.http.WebApplication.getApplicationKey()
|
org.apache.wicket.Page.getNumericId()
|
org.apache.wicket.extensions.model.AbstractCheckBoxModel.getObject(Component)
replaced by AbstractCheckBoxModel.getObject() |
org.apache.wicket.protocol.http.mock.MockHttpServletRequest.getRealPath(String)
Use ServletContext.getRealPath(String) instead. |
org.apache.wicket.protocol.http.mock.MockHttpSession.getSessionContext()
|
org.apache.wicket.protocol.http.mock.MockHttpServletResponse.getTextResponse()
use MockHttpServletResponse.getDocument() |
org.apache.wicket.protocol.http.mock.MockHttpSession.getValue(String)
use getAttribute(String) instead |
org.apache.wicket.protocol.http.mock.MockHttpSession.getValueNames()
use getAttributeNames() instead |
org.apache.wicket.extensions.model.AbstractCheckBoxModel.isSelected(Component)
replaced by AbstractCheckBoxModel.isSelected() |
org.apache.wicket.protocol.http.WebApplication.mount(IRequestMapper)
this is the same as getRootRequestMapperAsCompound().add(mapper) |
org.apache.wicket.protocol.http.WebApplication.mountBookmarkablePage(String, Class)
use mounted mapper instead, this method can be represented as
getRootRequestMapperAsCompound().add(new MountedMapper(path,
bookmarkablePageClass)) |
org.apache.wicket.protocol.http.WebApplication.mountSharedResource(String, ResourceReference)
- not sure what to use yet but this will be deprecated :) |
org.apache.wicket.protocol.http.mock.MockHttpSession.putValue(String, Object)
Use setAttribute(String, Object) instead |
org.apache.wicket.protocol.http.mock.MockHttpSession.removeValue(String)
Use removeAttribute(String) instead |
org.apache.wicket.extensions.model.AbstractCheckBoxModel.setObject(Component, Object)
replaced by IModel.setObject(Object) |
org.apache.wicket.extensions.model.AbstractCheckBoxModel.setSelected(Component, boolean)
replaced by AbstractCheckBoxModel.select() |
org.apache.wicket.protocol.http.mock.MockHttpServletResponse.setStatus(int, String)
|