Package org.jboss.hal.core.mvp
Interface HasPresenter<P>
-
- All Known Subinterfaces:
ApplicationSecurityDomainPresenter.MyView,BasePresenter.MyView<P>,BatchPresenter.MyView,BufferCachePresenter.MyView,ByteBufferPoolPresenter.MyView,CacheContainerPresenter.MyView,org.jboss.hal.client.configuration.subsystem.infinispan.CacheView<P>,ChannelPresenter.MyView,ChildResourcePresenter.MyView,ClusteringPresenter.MyView,ConfigurationChangesPresenter.MyView,ConnectionPresenter.MyView,CoreManagementPresenter.MyView,DataSourcePresenter.MyView,DataSourcePresenter.MyView,DataSourceXAPresenter.MyView,DeploymentPresenter.MyView,DeploymentScannerPresenter.MyView,DestinationPresenter.MyView,DistributableWebPresenter.MyView,DistributedCachePresenter.MyView,EEPresenter.MyView,EjbPresenter.MyView,ElytronSubsystemPresenter.MyView,FactoriesPresenter.MyView,FilterPresenter.MyView,FooterPresenter.MyView,HandlerPresenter.MyView,HaPolicyPresenter.MyView,HeaderPresenter.MyView,HomepagePresenter.MyView,HostPresenter.MyView,HostPresenter.MyView,IiopPresenter.MyView,InterfacePresenter.MyView,InvalidationCachePresenter.MyView,IOPresenter.MyView,JcaPresenter.MyView,JGroupsPresenter.MyView,JmsBridgePresenter.MyView,JmsQueuePresenter.MyView,JmxPresenter.MyView,JndiPresenter.MyView,JobPresenter.MyView,JpaPresenter.MyView,JpaPresenter.MyView,LocalCachePresenter.MyView,LogFilePresenter.MyView,LoggingPresenter.MyView,LoggingProfilePresenter.MyView,MacroEditorPresenter.MyView,MailSessionPresenter.MyView,ManagementOperationsPresenter.MyView,MapperDecoderPresenter.MyView,MbuiView<P>,MessagingSubsystemPresenter.MyView,MicroProfileConfigPresenter.MyView,MicroProfileHealthPresenter.MyView,MicroProfileMetricsPresenter.MyView,ModclusterPresenter.MyView,OtherSettingsPresenter.MyView,PathsPresenter.MyView,RealmsPresenter.MyView,RealmsPresenter.MyView,RemoteActiveMQPresenter.MyView,RemoteCacheContainerPresenter.MyView,RemotingPresenter.MyView,ReplicatedCachePresenter.MyView,RequestControllerPresenter.MyView,ResourceAdapterPresenter.MyView,ResourceAdapterPresenter.MyView,ScatteredCachePresenter.MyView,SecurityDomainPresenter.MyView,SecurityManagerPresenter.MyView,SecurityPresenter.MyView,ServerGroupDeploymentPresenter.MyView,ServerGroupPresenter.MyView,ServerPresenter.MyView,ServerPresenter.MyView,ServerPresenter.MyView,ServerPresenter.MyView,ServletContainerPresenter.MyView,SocketBindingGroupPresenter.MyView,SSLPresenter.MyView,StandaloneDeploymentPresenter.MyView,StandaloneServerPresenter.MyView,StoresPresenter.MyView,SystemPropertiesPresenter.MyView,TransactionPresenter.MyView,TransactionsPresenter.MyView,UnderTheBridgePresenter.MyView,UndertowSubsystemPresenter.MyView,WebservicePresenter.MyView
- All Known Implementing Classes:
ApplicationSecurityDomainView,BaseView,BatchView,BufferCacheView,ByteBufferPoolView,CacheContainerView,ChannelView,ChildResourceView,ClusteringView,ConfigurationChangesView,ConnectionView,ConstantHeadersElement,CoreManagementView,DataSourceView,DataSourceView,DataSourceXAView,DeploymentScannerView,DeploymentView,DestinationView,DistributableWebView,DistributedCacheView,EEView,EjbView,ElytronSubsystemView,FactoriesView,FilterView,FooterView,ForkElement,GenericElement,HandlerView,HaPolicyView,HeaderView,HomepageView,HostView,HostView,HttpManagementInterfaceElement,IiopView,InterfaceView,InvalidationCacheView,IOView,JcaView,JGroupsView,JmsBridgeView,JmsQueueView,JmxView,JndiView,JobView,JpaView,JpaView,LdapRealmElement,LocalCacheView,LogFileView,LoggingProfileView,LoggingView,MacroEditorView,MailSessionView,ManagementOperationsView,MapperDecoderView,Mbui_BatchView,Mbui_BufferCacheView,Mbui_ByteBufferPoolView,Mbui_ClusteringView,Mbui_ConnectionView,Mbui_CoreManagementView,Mbui_DeploymentScannerView,Mbui_DestinationView,Mbui_DistributableWebView,Mbui_EjbView,Mbui_ElytronSubsystemView,Mbui_FilterView,Mbui_HandlerView,Mbui_HostView,Mbui_IiopView,Mbui_InterfaceView,Mbui_IOView,Mbui_JpaView,Mbui_LoggingProfileView,Mbui_LoggingView,Mbui_MapperDecoderView,Mbui_MessagingSubsystemView,Mbui_MicroProfileConfigView,Mbui_ModclusterView,Mbui_PathsView,Mbui_RemoteActiveMQView,Mbui_RemotingView,Mbui_RequestControllerView,Mbui_ResourceAdapterView,Mbui_SecurityDomainView,Mbui_SecurityView,Mbui_ServerGroupView,Mbui_ServerView,Mbui_SocketBindingGroupView,Mbui_TransactionView,Mbui_UndertowSubsystemView,MbuiViewImpl,MessagingSubsystemView,MicroProfileConfigView,MicroProfileHealthView,MicroProfileMetricsView,ModclusterView,OtherSettingsView,PathsView,ProtocolElement,RealmsView,RealmsView,RelayElement,RemoteActiveMQView,RemoteCacheContainerView,RemotingView,ReplicatedCacheView,RequestControllerView,ResourceAdapterView,ResourceAdapterView,ScatteredCacheView,SecurityDomainView,SecurityManagerView,SecurityView,ServerGroupDeploymentView,ServerGroupView,ServerView,ServerView,ServerView,ServerView,ServletContainerView,SimplePermissionMapperElement,SocketBindingGroupView,SSLView,StandaloneDeploymentView,StandaloneServerView,StoresView,SystemPropertiesView,TransactionsView,TransactionView,UnderTheBridgeView,UndertowSubsystemView,WebserviceView
public interface HasPresenter<P>Interface meant to be implemented by views which need a reference to their presenter. The presenter should bind itself to views implementing this interface in theHandlerContainerImpl.onBind()method:@Override protected void onBind() { super.onBind(); getView().setPresenter(this); }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetPresenter(P presenter)
-
-
-
Method Detail
-
setPresenter
void setPresenter(P presenter)
-
-