Package org.codemap

Examples of org.codemap.MapSelection


    public void paintAfter(MapValues map, GC gc) {
        // does nothing       
    }   

    private final void paintChildren(MapValues map, GC gc) {
        MapSelection selection = this.getSelection(map);
        MapInstance mapInstance = map.mapInstance.getValue();
        if (selection == null || mapInstance == null) return;
        for (Location each: selection.locationsOn(map)) {
            paintChild(map, gc, each);
        }
    }
View Full Code Here


    }
   
    @Override
    public void keyReleased(KeyEvent e) {
        if (!(e.keyCode == SWT.ESC)) return;
        MapSelection selection = getSelection(CodemapCore.getPlugin().getActiveMap().getValues());
        selection.clear();
        selectionChanged(selection);
    }
View Full Code Here

    private QueryListener theQueryListener;
    private SearchResultCommand currentCommand;

    public SearchResultController() {
        searchListener = new SearchResultListener(this);
        mapSelection = new MapSelection();
        theQueryListener = new QueryListener(this);
        registerQueryListener();       
    }
View Full Code Here

    private Layer openFilesLayer;
    private MapSelection communicationSelection;

  public ECFContribution start(BundleContext context) {
      this.context = context;
    communicationSelection = new MapSelection();
    openFilesLayer = new CommunicationOverlay(communicationSelection);
    plugin = this;
    return this;
  }
View Full Code Here

   
    private MapSelection selection;
    private HashMap<String, Integer> severityMap;

    public MarkerSelection() {
        selection = new MapSelection();
        severityMap = new HashMap<String, Integer>();
    }
View Full Code Here

TOP

Related Classes of org.codemap.MapSelection

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.