package fr.openwide.core.wicket.more.markup.html.factory; import org.apache.wicket.Component; import org.apache.wicket.model.IDetachable; public interface ITwoParameterComponentFactory<C extends Component, P1, P2> extends IDetachable { C create(String wicketId, P1 parameter1, P2 parameter2); }