Ignore:
Timestamp:
2010-09-15T18:54:18+02:00 (15 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastreInterface.java

    r22387 r23190  
    5353    final String cOptionListEnd = "</option>";
    5454    final String cBBoxCommunStart = "new GeoBox(";
    55     final String cBBoxCommunEnd = ")";   
     55    final String cBBoxCommunEnd = ")";
    5656
    5757    final String cInterfaceVector = "afficherCarteCommune.do";
     
    6262    final String cImageNameStart = ">Feuille ";
    6363    final String cTAImageNameStart = "Tableau d'assemblage <strong>";
    64    
     64
    6565    final static long cCookieExpiration = 30 * 60 * 1000; // 30 minutes expressed in milliseconds
    6666
     
    9797
    9898    /**
    99      * 
     99     *
    100100     * @return true if a cookie is delivered by WMS and false is WMS is not opening a client session
    101101     *         (too many clients or in maintenance)
     
    141141        cookie = null;
    142142    }
    143    
     143
    144144    public boolean isCookieExpired() {
    145145        long now = new Date().getTime();
     
    165165        urlConn.setRequestProperty("Cookie", this.cookie);
    166166    }
    167    
     167
    168168    private void getInterface(WMSLayer wmsLayer) throws IOException, DuplicateLayerException {
    169169        // first attempt : search for given name without codeCommune
     
    379379        return lines;
    380380    }
    381    
     381
    382382    private void parseFeuillesList(String input) {
    383383        listOfFeuilles.clear();
     
    402402        }
    403403    }
    404    
     404
    405405    private String selectMunicipalityDialog(WMSLayer wmsLayer) {
    406406        JPanel p = new JPanel(new GridBagLayout());
     
    455455     * and store it in given wmsLayer
    456456     * In case of raster image, we also check in the same http request if the image is already georeferenced
    457      * and store the result in the wmsLayer as well. 
     457     * and store the result in the wmsLayer as well.
    458458     * @param wmsLayer the WMSLayer where the commune data and images are stored
    459459     * @throws IOException
     
    502502        }
    503503    }
    504    
     504
    505505    private void parseGeoreferences(WMSLayer wmsLayer, String input) {
    506506        if (input.lastIndexOf(cBBoxCommunStart) != -1) {
     
    537537        }
    538538    }
    539    
     539
    540540    private double tryParseDouble(String str) {
    541541        try {
Note: See TracChangeset for help on using the changeset viewer.