Class AbstractInputGuiComponentFactory<T>
- java.lang.Object
-
- com.evolveum.midpoint.gui.impl.factory.panel.AbstractInputGuiComponentFactory<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
GuiComponentFactory<PrismPropertyPanelContext<T>>
- Direct Known Subclasses:
AbstractIntentFactory
,AbstractObjectClassFactory
,DatePanelFactory
,DropDownChoicePanelFactory
,EnumPanelFactory
,ExecuteScriptPanelFactory
,LoggingAppenderPanelFactory
,LoggingPackagePanelFactory
,MailServerPanelFactory
,ObjectDeltaPanelFactory
,PolyStringEditorPanelFactory
,ProfilingLoggerLevelPanelFactory
,QueryTextAreaPanelFactory
,RelationPanelFactory
,ResourceAttributeRefPanelFactory
,SmsGatewayPanelFactory
,TextAreaPanelFactory
,TextPanelFactory
,ThreeStateComboPanelFactory
,UploadDownloadPanelFactory
public abstract class AbstractInputGuiComponentFactory<T> extends Object implements GuiComponentFactory<PrismPropertyPanelContext<T>>
abstract factory for all InputPanel panels
-
-
Constructor Summary
Constructors Constructor Description AbstractInputGuiComponentFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
configure(PrismPropertyPanelContext<T> panelCtx, org.apache.wicket.Component component)
org.apache.wicket.Component
createPanel(PrismPropertyPanelContext<T> panelCtx)
Integer
getOrder()
protected abstract InputPanel
getPanel(PrismPropertyPanelContext<T> panelCtx)
GuiComponentRegistry
getRegistry()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.gui.api.factory.GuiComponentFactory
match
-
-
-
-
Method Detail
-
getRegistry
public GuiComponentRegistry getRegistry()
-
createPanel
public org.apache.wicket.Component createPanel(PrismPropertyPanelContext<T> panelCtx)
- Specified by:
createPanel
in interfaceGuiComponentFactory<T>
-
configure
public void configure(PrismPropertyPanelContext<T> panelCtx, org.apache.wicket.Component component)
- Specified by:
configure
in interfaceGuiComponentFactory<T>
-
getOrder
public Integer getOrder()
- Specified by:
getOrder
in interfaceGuiComponentFactory<T>
-
getPanel
protected abstract InputPanel getPanel(PrismPropertyPanelContext<T> panelCtx)
-
-