接口 CompilationProblem

所有已知实现类:
EclipseCompilationProblem, SystemCompilationProblem

public interface CompilationProblem
Description: Title:首亨软件 - CRM、TSS、ERP等信息化管理软件
  • 方法概要

    修饰符和类型
    方法
    说明
    int
     
    int
    position of where the problem stops in the source code
    name of the file where the problem occurred
    the description of the problem
    int
     
    int
    position of where the problem starts in the source code
    boolean
    is the problem an error and compilation cannot continue or just a warning and compilation can proceed
  • 方法详细资料

    • isError

      boolean isError()
      is the problem an error and compilation cannot continue or just a warning and compilation can proceed
      返回:
      boolean
    • getFileName

      String getFileName()
      name of the file where the problem occurred
      返回:
      String
    • getStartLine

      int getStartLine()
      position of where the problem starts in the source code
      返回:
      int
    • getStartColumn

      int getStartColumn()
    • getEndLine

      int getEndLine()
      position of where the problem stops in the source code
      返回:
      int
    • getEndColumn

      int getEndColumn()
    • getMessage

      String getMessage()
      the description of the problem
      返回:
      String