Package org.apache.uima.ruta.ide.parser.ast

Examples of org.apache.uima.ruta.ide.parser.ast.RutaPackageDeclaration


  }

  @Override
  public boolean visit(Statement s) throws Exception {
    if (s instanceof RutaPackageDeclaration) {
      final RutaPackageDeclaration pkg = (RutaPackageDeclaration) s;
      packagesProvided.add(pkg.getName());
      return false;
    }
    return super.visit(s);
  }
View Full Code Here


    }
    return super.visit(expression);
  }

  private void processPackage(Statement statement) {
    RutaPackageDeclaration pack = (RutaPackageDeclaration) statement;
    this.fRequestor.acceptPackage(pack.getNameStart(), pack.getNameEnd(), pack.getName());
  }
View Full Code Here

  }

  @Override
  public boolean visit(Statement s) throws Exception {
    if (s instanceof RutaPackageDeclaration) {
      final RutaPackageDeclaration pkg = (RutaPackageDeclaration) s;
      packagesProvided.add(pkg.getName());
      return false;
    }
    return super.visit(s);
  }
View Full Code Here

    }
    return super.visit(expression);
  }

  private void processPackage(Statement statement) {
    RutaPackageDeclaration pack = (RutaPackageDeclaration) statement;
    this.fRequestor.acceptPackage(pack.getNameStart(), pack.getNameEnd(),
           pack.getName());
  }
View Full Code Here

TOP

Related Classes of org.apache.uima.ruta.ide.parser.ast.RutaPackageDeclaration

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.