Package org.eclipse.dltk.ast.references

Examples of org.eclipse.dltk.ast.references.TypeReference.sourceStart()


        SimpleReference[] references = phpDocTag.getReferences();
        if (references != null) {
          for (SimpleReference simpleReference : references) {
            if (simpleReference instanceof TypeReference) {
              TypeReference typeReference = (TypeReference) simpleReference;
              if (typeReference.sourceStart() <= offset
                  && typeReference.sourceEnd() >= end) {
                String name = typeReference.getName();

                // remove additional end elements like '[]'
                if (typeReference.sourceEnd() > end) {
View Full Code Here


                String name = typeReference.getName();

                // remove additional end elements like '[]'
                if (typeReference.sourceEnd() > end) {
                  int startShift = offset
                      - typeReference.sourceStart();
                  name = typeReference.getName().substring(
                      startShift,
                      (end - offset) + startShift);
                }
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.