/[schmitzm]/branches/2.0-RC2/src/skrueger/geotools/selection/StyledLayerSelectionModel.java
ViewVC logotype

Diff of /branches/2.0-RC2/src/skrueger/geotools/selection/StyledLayerSelectionModel.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/src/skrueger/geotools/selection/StyledLayerSelectionModel.java revision 244 by alfonx, Wed Jul 29 09:33:33 2009 UTC branches/1.0-gt2-2.6/src/skrueger/geotools/selection/StyledLayerSelectionModel.java revision 428 by alfonx, Sun Oct 4 14:28:07 2009 UTC
# Line 2  Line 2 
2   * Copyright (c) 2009 Martin O. J. Schmitz.   * Copyright (c) 2009 Martin O. J. Schmitz.
3   *   *
4   * This file is part of the SCHMITZM library - a collection of utility   * This file is part of the SCHMITZM library - a collection of utility
5   * classes based on Java 1.6, focussing (not only) on Java Swing   * classes based on Java 1.6, focusing (not only) on Java Swing
6   * and the Geotools library.   * and the Geotools library.
7   *   *
8   * The SCHMITZM project is hosted at:   * The SCHMITZM project is hosted at:
# Line 52  import java.util.Vector; Line 52  import java.util.Vector;
52  import javax.swing.event.EventListenerList;  import javax.swing.event.EventListenerList;
53    
54  import org.apache.log4j.Logger;  import org.apache.log4j.Logger;
55  import org.geotools.feature.Feature;  import org.opengis.feature.simple.SimpleFeature;
56    
57  import schmitzm.swing.event.PropertyChangeEmitter;  import schmitzm.swing.event.PropertyChangeEmitter;
58  import skrueger.geotools.StyledLayerInterface;  import skrueger.geotools.StyledLayerInterface;
# Line 75  public abstract class StyledLayerSelecti Line 75  public abstract class StyledLayerSelecti
75    /** Holds the connected listeners. */    /** Holds the connected listeners. */
76    protected EventListenerList listenerList = new EventListenerList();    protected EventListenerList listenerList = new EventListenerList();
77    
78    /** Holds the current selection (e.g. {@link Feature Features}). */    /** Holds the current selection (e.g. {@link SimpleFeature Features}). */
79    protected final HashSet<E> selectionObjects;    protected final HashSet<E> selectionObjects;
80    
81    /** Holds the styled map whose selection is managed by this class. */    /** Holds the styled map whose selection is managed by this class. */
82    protected final StyledLayerInterface<?> styledLayer;    private final StyledLayerInterface<?> styledLayer;
83    
84    
85    /** Indicates whether a selection change is a part of multiple    /** Indicates whether a selection change is a part of multiple
# Line 241  public abstract class StyledLayerSelecti Line 241  public abstract class StyledLayerSelecti
241      this.removeListener(listener);      this.removeListener(listener);
242    }    }
243    
244    public StyledLayerInterface<?> getStyledLayer() {
245            return styledLayer;
246    }
247    
248    
249  }  }

Legend:
Removed from v.244  
changed lines
  Added in v.428

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26