Codota Logo
IComponentHierarchyBase.getEventsAll
Code IndexAdd Codota to your IDE (free)

How to use
getEventsAll
method
in
com.jwebmp.core.base.interfaces.IComponentHierarchyBase

Best Java code snippets using com.jwebmp.core.base.interfaces.IComponentHierarchyBase.getEventsAll (Showing top 3 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: com.jwebmp.jre10/jwebmp-core

/**
 * Finds the event in all this components and child components
 *
 * @param eventId
 *
 * @return
 *
 * @see ComponentEventBase#findEvent(String)
 */
@Override
public ComponentEventBase findEvent(@NotNull String eventId)
{
  for (C child : getChildren())
  {
    for (Object jScript : child.getEventsAll())
    {
      if (((Event) jScript)
            .getID()
            .equals(eventId))
      {
        return (ComponentEventBase) jScript;
      }
    }
  }
  return null;
}
origin: com.jwebmp/jwebmp-core

/**
 * Finds the event in all this components and child components
 *
 * @param eventId
 *
 * @return
 *
 * @see ComponentEventBase#findEvent(String)
 */
@Override
public ComponentEventBase findEvent(@NotNull String eventId)
{
  for (C child : getChildren())
  {
    for (Object jScript : child.getEventsAll())
    {
      if (((Event) jScript)
            .getID()
            .equals(eventId))
      {
        return (ComponentEventBase) jScript;
      }
    }
  }
  return null;
}
origin: com.jwebmp.jre11/jwebmp-core

/**
 * Finds the event in all this components and child components
 *
 * @param eventId
 *
 * @return
 *
 * @see ComponentEventBase#findEvent(String)
 */
@Override
public ComponentEventBase findEvent(@NotNull String eventId)
{
  for (C child : getChildren())
  {
    for (Object jScript : child.getEventsAll())
    {
      if (((Event) jScript)
            .getID()
            .equals(eventId))
      {
        return (ComponentEventBase) jScript;
      }
    }
  }
  return null;
}
com.jwebmp.core.base.interfacesIComponentHierarchyBasegetEventsAll

Javadoc

Returns a complete list of events

Popular methods of IComponentHierarchyBase

  • addClass
    Adds a class name to the class list
  • asAttributeBase
  • asBase
  • destroy
  • getChildrenHierarchy
    Get an array list of all children and their children recursively Excludes this object
  • getCssReferencesAll
    Adds in the JavaScript References for all the children
  • getJavascriptReferencesAll
    Adds in the JavaScript References for all the children
  • init
  • isConfigured
  • preConfigure
  • removeClass
    Removes a class name from this component
  • setPage
    Sets the page this component belongs on.
  • removeClass,
  • setPage,
  • setParent,
  • setTiny,
  • toString

Popular in Java

  • Start an intent from android
  • getApplicationContext (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • onRequestPermissionsResult (Fragment)
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • DecimalFormat (java.text)
    DecimalFormat is a concrete subclass ofNumberFormat that formats decimal numbers. It has a variety o
  • SimpleDateFormat (java.text)
    Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now