Examples of FromRefEnumeration


Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over DBArgument objects for this method
   */
  public Enumeration getArguments()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_arguments.iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over DBFieldReference of references from this method
   */
  public Enumeration getReferences()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_field_references.iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over DBStringReference representing string references from this method
   */
  public Enumeration getStringReferences()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_string_references.iterator()));   
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over calls <i>from</i> this method
   */
  public Enumeration getCalls()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_calls.iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   */
  public Enumeration getContainedClasses()
  {
    if ( m_contained==null)
      return EmptyEnum.empty;
    return new FromRefEnumeration( new IteratorEnumeration( m_contained.iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

    return new FromRefEnumeration( new IteratorEnumeration( m_contained.iterator()));
  }
 
  public Enumeration getFields()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_fields.values().iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over all the methods (including static and constructor) in the class
   */
  public Enumeration getMethods()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_methods.values().iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over immediate base classes (extends and implements) for this class
   */
  public Enumeration getBaseClasses()
  {
    return new FromRefEnumeration( new IteratorEnumeration( m_base.iterator()));
  }
View Full Code Here

Examples of com.antlersoft.odb.FromRefEnumeration

   *
   * @return Enumeration over the immediate derived classes (if any) of this class
   */
  public Enumeration getDerivedClasses()
  {
    return m_derived==null ? (Enumeration)EmptyEnum.empty : (Enumeration)new FromRefEnumeration( new IteratorEnumeration( m_derived.iterator()));
  }
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.