Ignore:
Timestamp:
2009-11-24T10:45:04+01:00 (14 years ago)
Author:
stoecker
Message:

i18n updated, fixed files to reduce problems when applying patches, fix #4017

Location:
trunk/src/org/openstreetmap/josm/gui/layer
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/GeoImageLayer.java

    r2450 r2512  
    103103            volatile Image scaledImage;
    104104
    105 
    106105            public Entry(File file, int width, int height, int maxSize, ImageLoadedListener listener) {
    107106                this.file = file;
     
    222221            }
    223222        }
    224 
    225223
    226224        public synchronized boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height) {
     
    322320                gpxSubTask.finishTask();
    323321            }
    324 
    325322
    326323            if (gps.isEmpty())
  • trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java

    r2450 r2512  
    665665            } // end for trk
    666666        } // end if lines
    667 
    668667
    669668        /****************************************************************
  • trunk/src/org/openstreetmap/josm/gui/layer/Layer.java

    r2450 r2512  
    6666    /**
    6767     * The visibility state of the layer.
    68      * 
     68     *
    6969     */
    7070    private boolean visible = true;
     
    7272    /**
    7373     * The layer should be handled as a background layer in automatic handling
    74      * 
     74     *
    7575     */
    7676    private boolean background = false;
     
    7878    /**
    7979     * The name of this layer.
    80      * 
     80     *
    8181     */
    8282    private  String name;
     
    145145    public void setAssociatedFile(File file) { associatedFile = file; }
    146146
    147 
    148147    /**
    149148     * Replies the name of the layer
    150      * 
     149     *
    151150     * @return the name of the layer
    152151     */
     
    174173    /**
    175174     * Replies true if this layer is a background layer
    176      * 
     175     *
    177176     * @return true if this layer is a background layer
    178177     */
     
    183182    /**
    184183     * Sets whether this layer is a background layer
    185      * 
     184     *
    186185     * @param background true, if this layer is a background layer
    187186     */
     
    193192     * Sets the visibility of this layer. Emits property change event for
    194193     * property {@see #VISIBLE_PROP}.
    195      * 
     194     *
    196195     * @param visible true, if the layer is visible; false, otherwise.
    197196     */
     
    221220    /**
    222221     * Adds a {@see PropertyChangeListener}
    223      * 
     222     *
    224223     * @param listener the listener
    225224     */
     
    230229    /**
    231230     * Removes a {@see PropertyChangeListener}
    232      * 
     231     *
    233232     * @param listener the listener
    234233     */
     
    239238    /**
    240239     * fires a property change for the property {@see #VISIBLE_PROP}
    241      * 
     240     *
    242241     * @param oldValue the old value
    243242     * @param newValue the new value
     
    249248    /**
    250249     * The action to save a layer
    251      * 
     250     *
    252251     */
    253252    public static class LayerSaveAction extends AbstractAction {
  • trunk/src/org/openstreetmap/josm/gui/layer/OsmDataLayer.java

    r2500 r2512  
    324324    /**
    325325     * Warns the user about the number of detected conflicts
    326      * 
     326     *
    327327     * @param numNewConflicts the number of detected conflicts
    328328     * @param numPurgedPrimitives the number of automatically purged objects
     
    389389     * from the local dataset because they've been deleted on the
    390390     * server.
    391      * 
     391     *
    392392     * @return the purge command. <code>null</code> if no primitives have to
    393393     * be purged
     
    665665     * Replies true if the data managed by this layer needs to be uploaded to
    666666     * the server because it contains at least one modified primitive.
    667      * 
     667     *
    668668     * @return true if the data managed by this layer needs to be uploaded to
    669669     * the server because it contains at least one modified primitive; false,
     
    679679     * if the data managed by this layer has been modified since the last
    680680     * save operation to the file.
    681      * 
     681     *
    682682     * @return true if the data managed by this layer needs to be saved to
    683683     * a file
     
    689689    /**
    690690     * Initializes the layer after a successful load of OSM data from a file
    691      * 
     691     *
    692692     */
    693693    public void onPostLoadFromFile() {
     
    703703    /**
    704704     * Initializes the layer after a successful save of OSM data to a file
    705      * 
     705     *
    706706     */
    707707    public void onPostSaveToFile() {
     
    712712    /**
    713713     * Initializes the layer after a successful upload to the server
    714      * 
     714     *
    715715     */
    716716    public void onPostUploadToServer() {
  • trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/MarkerLayer.java

    r2450 r2512  
    446446    }
    447447
    448 
    449448    public final  class ShowHideMarkerText extends AbstractAction {
    450449        private final Layer layer;
Note: See TracChangeset for help on using the changeset viewer.