Package com.cedarsoft.spring.rcp.events

Examples of com.cedarsoft.spring.rcp.events.ShowBeansEvent


*/
public class BeanUiAccessRegistry implements ApplicationListener {
  @Override
  public void onApplicationEvent( @NotNull ApplicationEvent event ) {
    if ( event instanceof ShowBeansEvent ) {
      ShowBeansEvent beansEvent = ( ShowBeansEvent ) event;

      BeanUiAccess<?> uiAccess = findBeanUiAccess( beansEvent.getBeanType() );
      uiAccess.getBeansDisplay().show( beansEvent.getContext() );
    }
  }
View Full Code Here

TOP

Related Classes of com.cedarsoft.spring.rcp.events.ShowBeansEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.