FacesEvent.isAppropriateListener
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using javax.faces.event.FacesEvent.isAppropriateListener (Showing top 20 results out of 315)

  • Common ways to obtain FacesEvent
private void myMethod () {
FacesEvent f =
  • WrapperEvent revent;revent.getFacesEvent()
  • UIRepeat.IndexedEvent uIRepeatIndexedEvent;uIRepeatIndexedEvent.getTarget()
  • UIRepeat.IndexedEvent uIRepeatIndexedEvent;uIRepeatIndexedEvent.getTarget()
  • Smart code suggestions by Codota
}
origin: primefaces/primefaces

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return target.isAppropriateListener(listener);
}
origin: primefaces/primefaces

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return _target.isAppropriateListener(listener);
}
origin: org.apache.myfaces.tobago/tobago-core

@Override
public boolean isAppropriateListener(
  final FacesListener faceslistener) {
 return wrappedFacesEvent.isAppropriateListener(faceslistener);
}
origin: org.apache.myfaces/com.springsource.org.apache.myfaces.javax.faces

@Override
public boolean isAppropriateListener(FacesListener faceslistener)
{
  return _wrappedFacesEvent.isAppropriateListener(faceslistener);
}
origin: org.apache.myfaces.core/myfaces-api

@Override
public boolean isAppropriateListener(FacesListener faceslistener)
{
  return _wrappedFacesEvent.isAppropriateListener(faceslistener);
}
origin: org.glassfish/javax.faces

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return this.target.isAppropriateListener(listener);
}
origin: org.apache.myfaces.core/myfaces-impl

@Override
public boolean isAppropriateListener(FacesListener listener)
{
  return _target.isAppropriateListener(listener);
}
origin: omnifaces/omnifaces

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return wrapped.isAppropriateListener(listener);
}
origin: com.sun.faces/jsf-impl

public boolean isAppropriateListener(FacesListener listener) {
  return this.target.isAppropriateListener(listener);
}
origin: org.omnifaces/omnifaces

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return wrapped.isAppropriateListener(listener);
}
origin: org.apache.myfaces.core/myfaces-shaded-impl

public boolean isAppropriateListener(FacesListener listener)
{
  return _target.isAppropriateListener(listener);
}
origin: net.bootsfaces/bootsfaces

public boolean isAppropriateListener(FacesListener listener) {
  return this.target.isAppropriateListener(listener);
}
origin: org.seasar.teeda/teeda-core

public boolean isAppropriateListener(FacesListener listener) {
  return event_.isAppropriateListener(listener);
}
origin: com.sun.facelets/jsf-facelets

public boolean isAppropriateListener(FacesListener listener) {
  return this.target.isAppropriateListener(listener);
}
origin: org.glassfish/jakarta.faces

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return this.target.isAppropriateListener(listener);
}
origin: org.apache.myfaces.core.internal/myfaces-shaded-impl

public boolean isAppropriateListener(FacesListener listener)
{
  return _target.isAppropriateListener(listener);
}
origin: org.apache.myfaces.tomahawk/tomahawk-sandbox

public boolean isAppropriateListener(FacesListener faceslistener) {
  return _wrappedFacesEvent.isAppropriateListener(faceslistener);
}
origin: org.primefaces/primefaces

public boolean isAppropriateListener(FacesListener listener) {
  return _target.isAppropriateListener(listener);
}
origin: eclipse-ee4j/mojarra

@Override
public boolean isAppropriateListener(FacesListener listener) {
  return this.target.isAppropriateListener(listener);
}
origin: org.seasar.teeda/teeda-core

public void broadcast(FacesEvent event) throws AbortProcessingException {
  AssertionUtil.assertNotNull("event", event);
  if (listeners != null) {
    for (Iterator itr = listeners.iterator(); itr.hasNext();) {
      FacesListener listener = (FacesListener) itr.next();
      if (event.isAppropriateListener(listener)) {
        event.processListener(listener);
      }
    }
  }
}
javax.faces.eventFacesEventisAppropriateListener

Javadoc

Return true if this FacesListener is an instance of a listener class that this event supports. Typically, this will be accomplished by an "instanceof" check on the listener class.

Popular methods of FacesEvent

  • getComponent
    Return the source UIComponent that sent this event.
  • setPhaseId
    Set the PhaseId during which this event will be delivered.
  • getPhaseId
    Return the identifier of the request processing phase during which this event should be delivered. L
  • processListener
    Broadcast this FacesEvent to the specified FacesListener, by whatever mechanism is appropriate. Typi
  • getSource
  • queue
    Convenience method to queue this event for broadcast at the end of the current request processing li
  • toString
  • getFacesContext
    Get the Faces context. If the constructor was passed a FacesContext we return it, otherwise we cal

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • JPanel (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)