Package de.yaams.extensions.basemap.tiled.mapeditor.util

Examples of de.yaams.extensions.basemap.tiled.mapeditor.util.TileRegionSelectionEvent


    }
  }

  private void fireTileRegionSelectionEvent(Rectangle selection) {
    TileLayer region = createTileLayerFromRegion(selection);
    TileRegionSelectionEvent event = new TileRegionSelectionEvent(this, region);
    for (TileSelectionListener listener : tileSelectionListeners) {
      listener.tileRegionSelected(event);
    }
  }
View Full Code Here

TOP

Related Classes of de.yaams.extensions.basemap.tiled.mapeditor.util.TileRegionSelectionEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.