Package org.eclipse.emf.common.util

Examples of org.eclipse.emf.common.util.EList


   * @return the list of implemention jsf libraries
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getImplJSFLibraries() {
    EList implementations = new BasicEList();
    Iterator itLibs = getAllJSFLibraries().iterator();
    while (itLibs.hasNext()) {
      JSFLibrary lib = (JSFLibrary)itLibs.next();
      if (lib.isImplementation()) {
        implementations.add(lib);
      }
    }
    return implementations;
  }
View Full Code Here


   * @return the non-implemention JSF libraries
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getNonImplJSFLibraries() {
    EList nonImplementations = new BasicEList();
    Iterator itLibs = getAllJSFLibraries().iterator();
    while (itLibs.hasNext()) {
      JSFLibrary lib = (JSFLibrary)itLibs.next();
      if (!lib.isImplementation()) {
        nonImplementations.add(lib);
      }
    }
    return nonImplementations;
  }
View Full Code Here

   * @return all JSF libraries
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getAllJSFLibraries() {
    EList allLibs = new BasicEList();
    allLibs.addAll(getJSFLibraries());
    allLibs.addAll(getPluginProvidedJSFLibraries());
    return allLibs;
  }
View Full Code Here

    }

    private TypeInfo findTypeInfo(final TagMapping mapping, final String jsfVersion,
            final String libVersion)
    {
        final EList list = mapping.getVersionedTagToViewMappings();
       
        FIND_BY_VERSION : for (final Iterator<?> it = list.iterator(); it.hasNext();)
        {
            Object obj = it.next();
           
            if (obj instanceof TagToViewObjectMapping)
            {
View Full Code Here

   * @return the list of libraries named 'name'
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getTapestryLibrariesByName(String name) {
    EList libraries = new BasicEList();
    if (name != null) {
      Iterator itLibs = getAllTapestryLibraries().iterator();
      while(itLibs.hasNext()) {
        TapestryLibrary curLib = (TapestryLibrary)itLibs.next();
        if (name.equals(curLib.getName())) {
          libraries.add(curLib);
        }
      }
    }
    return libraries;
  }
View Full Code Here

   * @return the list of implemention jsf libraries
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getImplTapestryLibraries() {
    EList implementations = new BasicEList();
    Iterator itLibs = getAllTapestryLibraries().iterator();
    while (itLibs.hasNext()) {
      TapestryLibrary lib = (TapestryLibrary)itLibs.next();
      if (lib.isImplementation()) {
        implementations.add(lib);
      }
    }
    return implementations;
  }
View Full Code Here

   * @return the non-implemention JSF libraries
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getNonImplTapestryLibraries() {
    EList nonImplementations = new BasicEList();
    Iterator itLibs = getAllTapestryLibraries().iterator();
    while (itLibs.hasNext()) {
      TapestryLibrary lib = (TapestryLibrary)itLibs.next();
      if (!lib.isImplementation()) {
        nonImplementations.add(lib);
      }
    }
    return nonImplementations;
  }
View Full Code Here

   * @return all JSF libraries
   * <!-- end-user-doc -->
   * @generated NOT
   */
  public EList getAllTapestryLibraries() {
    EList allLibs = new BasicEList();
    allLibs.addAll(getTapestryLibraries());
    allLibs.addAll(getPluginProvidedTapestryLibraries());
    return allLibs;
  }
View Full Code Here

   * <!-- end-user-doc -->
   * @generated NOT
   */
  public List getProperties()
  {
    final EList allFeatures = getEAllStructuralFeatures();
    if (allFeatures != allFeaturesCache)
    {
      allFeaturesCache = allFeatures;
      allProperties = allExtendedProperties = null;
    }
View Full Code Here

    return allProperties;
  }

  public List getAllExtendedProperties()
  {
    final EList allFeatures = getEAllStructuralFeatures();
    if (allFeatures != allFeaturesCache)
    {
      allFeaturesCache = allFeatures;
      allProperties = allExtendedProperties = null;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.emf.common.util.EList

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.