resultcacheobj.java
来自「Welcome to MS4W, the no fuss installer f」· Java 代码 · 共 56 行
JAVA
56 行
/* ---------------------------------------------------------------------------- * 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 resultCacheObj { private long swigCPtr; protected boolean swigCMemOwn; protected resultCacheObj(long cPtr, boolean cMemoryOwn) { swigCMemOwn = cMemoryOwn; swigCPtr = cPtr; } protected void finalize() { delete(); } public void delete() { if(swigCPtr != 0 && swigCMemOwn) { swigCMemOwn = false; mapscriptJNI.delete_resultCacheObj(swigCPtr); } swigCPtr = 0; } protected static long getCPtr(resultCacheObj obj) { return (obj == null) ? 0 : obj.swigCPtr; } public int getNumresults() { return mapscriptJNI.get_resultCacheObj_numresults(swigCPtr); } public rectObj getBounds() { long cPtr = mapscriptJNI.get_resultCacheObj_bounds(swigCPtr); return (cPtr == 0) ? null : new rectObj(cPtr, false); } public resultCacheMemberObj getResult(int i) { long cPtr = mapscriptJNI.resultCacheObj_getResult(swigCPtr, i); return (cPtr == 0) ? null : new resultCacheMemberObj(cPtr, false); } public resultCacheObj() { this(mapscriptJNI.new_resultCacheObj(), true); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?