InstancePool.java
上传用户:njlgjx
上传日期:2022-08-07
资源大小:9105k
文件大小:1k
源码类别:

图形图象

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package com.mwq.map.tool;
  6. import javax.swing.JSlider;
  7. /**
  8.  *
  9.  * @author Administrator
  10.  */
  11. public class InstancePool {
  12.     private static MapProcessor mapProcessor;
  13.     private static JSlider scaleSlider;
  14.     public static MapProcessor getMapProcessor() {
  15.         return mapProcessor;
  16.     }
  17.     public static void setMapProcessor(MapProcessor aMapProcessor) {
  18.         mapProcessor = aMapProcessor;
  19.     }
  20.     public static JSlider getScaleSlider() {
  21.         return scaleSlider;
  22.     }
  23.     public static void setScaleSlider(JSlider aScaleSlider) {
  24.         scaleSlider = aScaleSlider;
  25.     }
  26. }