Package org.eclipse.jst.jsf.core.jsfappconfig

Examples of org.eclipse.jst.jsf.core.jsfappconfig.IFacesConfigChangeListener


  public void notifyFacesConfigChangeListeners(final Notification notification) {
    final Object emfFeature = notification.getFeature();
    if (emfFeature instanceof EStructuralFeature) {
      final Class emfClass = ((EStructuralFeature)emfFeature).getEType().getInstanceClass();
      final IFacesConfigChangeListener listener = facesConfigChangeListeners.get(emfClass);
      if (listener != null) {
        listener.notifyChanged(notification);
      }
    }
  }
View Full Code Here


  public void notifyFacesConfigChangeListeners(final Notification notification) {
    final Object emfFeature = notification.getFeature();
    if (emfFeature instanceof EStructuralFeature) {
      final Class emfClass = ((EStructuralFeature)emfFeature).getEType().getInstanceClass();
      final IFacesConfigChangeListener listener = facesConfigChangeListeners.get(emfClass);
      if (listener != null) {
        listener.notifyChanged(notification);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.core.jsfappconfig.IFacesConfigChangeListener

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.