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

📄 errorobj.java

📁 Welcome to MS4W, the no fuss installer for setting up MapServer on Microsoft Windows platforms. The
💻 JAVA
字号:
/* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). * Version: 1.3.21 * * Do not make changes to this file unless you know what you are doing--modify * the SWIG interface file instead. * ----------------------------------------------------------------------------- */package edu.umn.gis.mapscript;public class errorObj {  private long swigCPtr;  protected boolean swigCMemOwn;  protected errorObj(long cPtr, boolean cMemoryOwn) {    swigCMemOwn = cMemoryOwn;    swigCPtr = cPtr;  }  protected void finalize() {    delete();  }  public void delete() {    if(swigCPtr != 0 && swigCMemOwn) {      swigCMemOwn = false;      mapscriptJNI.delete_errorObj(swigCPtr);    }    swigCPtr = 0;  }  protected static long getCPtr(errorObj obj) {    return (obj == null) ? 0 : obj.swigCPtr;  }  public void setCode(int code) {    mapscriptJNI.set_errorObj_code(swigCPtr, code);  }  public int getCode() {    return mapscriptJNI.get_errorObj_code(swigCPtr);  }  public void setRoutine(String routine) {    mapscriptJNI.set_errorObj_routine(swigCPtr, routine);  }  public String getRoutine() {    return mapscriptJNI.get_errorObj_routine(swigCPtr);  }  public void setMessage(String message) {    mapscriptJNI.set_errorObj_message(swigCPtr, message);  }  public String getMessage() {    return mapscriptJNI.get_errorObj_message(swigCPtr);  }  public errorObj() {    this(mapscriptJNI.new_errorObj(), true);  }  public errorObj next() {    long cPtr = mapscriptJNI.errorObj_next(swigCPtr);    return (cPtr == 0) ? null : new errorObj(cPtr, false);  }}

⌨️ 快捷键说明

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