Ignore:
Timestamp:
2020-01-12T15:22:16+01:00 (4 years ago)
Author:
Don-vip
Message:

see #18172 - compare ELI and JOSM categories + fix missed @since xxx

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/TagInfoExtract.java

    r15232 r15692  
    128128    /**
    129129     * Parse command line arguments.
     130     * @param args command line arguments
    130131     */
    131132    private void parseCommandLineArguments(String[] args) {
     
    203204         * Determine full image url (can refer to JOSM or OSM repository).
    204205         * @param path the image path
     206         * @return full image url
    205207         */
    206208        private String findImageUrl(String path) {
     
    323325        /**
    324326         * Read the style sheet file and parse the MapCSS code.
     327         * @throws IOException if any I/O error occurs
     328         * @throws ParseException in case of parsing error
    325329         */
    326330        private void parseStyleSheet() throws IOException, ParseException {
     
    335339        /**
    336340         * Collect all the tag from the style sheet.
     341         * @return list of taginfo tags
    337342         */
    338343        private List<TagInfoTag> convertStyleSheet() {
     
    403408            /**
    404409             * Create image file from StyleElement.
     410             * @param element style element
     411             * @param type object type
     412             * @param nc navigatable component
    405413             *
    406414             * @return the URL
     
    428436             * @param generateImage if true, create or find a suitable image icon and return URL,
    429437             *                       if false, just check if tag is supported and return true or false
     438             * @return URL for image icon if tag is supported
    430439             */
    431440            abstract Optional<String> findUrl(boolean generateImage);
     
    550559    /**
    551560     * Initialize the script.
     561     * @throws IOException if any I/O error occurs
    552562     */
    553563    private void init() throws IOException {
Note: See TracChangeset for help on using the changeset viewer.