Package org.eclipse.dltk.compiler.problem

Examples of org.eclipse.dltk.compiler.problem.CategorizedProblem


    }
    return "<UNKNOWN CONSTANT>";
  }
 
  private String getCategoryCode() {
    CategorizedProblem categorized= (CategorizedProblem) fProblem;
    int categoryID= categorized.getCategoryID();
    StringBuffer buf= new StringBuffer();
   
    switch (categoryID) {
      case CategorizedProblem.CAT_UNSPECIFIED:
        buf.append("Unspecified");
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.compiler.problem.CategorizedProblem

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.