Examples of ShowBeansEvent


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
Copyright © 2018 www.massapi.com. 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.