Package org.aspectj.org.eclipse.jdt.core.dom

Examples of org.aspectj.org.eclipse.jdt.core.dom.LineComment


        // fill the offset table
        this.offsets= new int[count];
        for (int i= 0, k= 0; i < nComments; i++) {
          Object curr= this.commentList.get(i);
          if (curr instanceof LineComment) {
            LineComment comment= (LineComment) curr;
            this.offsets[k++]= comment.getStartPosition() + comment.getLength();
          }
        }
      } else {
        this.offsets= Util.EMPTY_INT_ARRAY;
      }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.core.dom.LineComment

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.