Package ai.cfg

Examples of ai.cfg.InterestingCodeFragment


    this.cfg = cfg;
    this.matched = false;
  }

  private void build() {
    InterestingCodeFragment md = cfg.getCodeFragment();
    Javadoc doc = md.getJavadoc();
    if (doc == null)
      throw new CommentParserException("No javadoc defined for method: '%s'", md.getUniqueName());
    List<?> a = doc.tags();
    assert a.size() == 1;
    String text = a.get(0).toString();
    for (String line : text.split("\n"))
      try {
View Full Code Here

TOP

Related Classes of ai.cfg.InterestingCodeFragment

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.