⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 compilererror.java

📁 Java有关XML编程需要用到axis 的源代码 把里面bin下的包导入相应的Java工程 进行使用
💻 JAVA
字号:
/* * Copyright 2001-2004 The Apache Software Foundation. *  * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *  *      http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.axis.components.compiler;/** * This class encapsulates an error message produced by a programming language * processor (whether interpreted or compiled) * @author <a href="mailto:dims@yahoo.com">Davanum Srinivas</a> * @author <a href="mailto:stefano@apache.org">Stefano Mazzocchi</a> * @since 2.0 */public class CompilerError {  /**   * Is this a severe error or a warning?   */  private boolean error;  /**   * The start line number of the offending program text   */  private int startline;  /**   * The start column number of the offending program text   */  private int startcolumn;  /**   * The end line number of the offending program text   */  private int endline;  /**   * The end column number of the offending program text   */  private int endcolumn;  /**   * The name of the file containing the offending program text   */  private String file;  /**   * The actual error text produced by the language processor   */  private String message;      /**   * The error message constructor.   *   * @param file The name of the file containing the offending program text   * @param error The actual error text produced by the language processor   * @param startline The start line number of the offending program text   * @param startcolumn The start column number of the offending program text   * @param endline The end line number of the offending program text   * @param endcolumn The end column number of the offending program text   * @param message The actual error text produced by the language processor   */  public CompilerError(    String file,    boolean error,    int startline,    int startcolumn,    int endline,    int endcolumn,    String message  )   {    this.file = file;    this.error = error;    this.startline = startline;    this.startcolumn = startcolumn;    this.endline = endline;    this.endcolumn = endcolumn;    this.message = message;  }  /**   * The error message constructor.   *   * @param message The actual error text produced by the language processor   */  public CompilerError(String message) {    this.message = message;  }    /**   * Return the filename associated with this compiler error.   *   * @return The filename associated with this compiler error   */  public String getFile() {    return file;  }  /**   * Assert whether this is a severe error or a warning   *   * @return Whether the error is severe   */  public boolean isError() {    return error;  }  /**   * Return the starting line number of the program text originating this error   *   * @return The starting line number of the program text originating this error   */  public int getStartLine() {    return startline;  }  /**   * Return the starting column number of the program text originating this   * error   *   * @return The starting column number of the program text originating this   * error   */  public int getStartColumn() {    return startcolumn;  }  /**   * Return the ending line number of the program text originating this error   *   * @return The ending line number of the program text originating this error   */  public int getEndLine() {    return endline;  }  /**   * Return the ending column number of the program text originating this   * error   *   * @return The ending column number of the program text originating this   * error   */  public int getEndColumn() {    return endcolumn;  }  /**   * Return the message produced by the language processor   *   * @return The message produced by the language processor   */  public String getMessage() {    return message;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -