Package org.eclipse.wb.internal.core.model.description

Examples of org.eclipse.wb.internal.core.model.description.ConstructorDescription


    // visit constructor
    if (javaInfo.getCreationSupport() instanceof ConstructorCreationSupport) {
      ConstructorCreationSupport creationSupport =
          (ConstructorCreationSupport) javaInfo.getCreationSupport();
      ClassInstanceCreation creation = creationSupport.getCreation();
      ConstructorDescription constructorDescription = creationSupport.getDescription();
      List<Expression> arguments = DomGenerics.arguments(creation);
      for (ParameterDescription parameter : constructorDescription.getParameters()) {
        if (parameter.hasTrueTag(tagName)) {
          visitTaggedParameter(visitor, constructorDescription, arguments, parameter);
        }
      }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.model.description.ConstructorDescription

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.