Examples of IPHPDocAwareDeclaration


Examples of org.eclipse.php.internal.core.compiler.ast.nodes.IPHPDocAwareDeclaration

  }

  private String getPHPDocLink(Declaration declaration) {
    String path = null;
    if (declaration instanceof IPHPDocAwareDeclaration) {
      IPHPDocAwareDeclaration phpDocDeclaration = (IPHPDocAwareDeclaration) declaration;

      PHPDocBlock docBlock = phpDocDeclaration.getPHPDoc();
      if (docBlock != null) {
        for (PHPDocTag docTag : docBlock.getTags(PHPDocTagKinds.LINK)) {
          Matcher m = HTTP_URL_PATTERN.matcher(docTag.getValue()
              .trim());
          if (m.find()) {
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.