Ignore:
Timestamp:
2016-01-01T02:35:34+01:00 (8 years ago)
Author:
Don-vip
Message:

javadoc update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/XmlWriter.java

    r8929 r9231  
    1717    protected final PrintWriter out;
    1818
     19    /**
     20     * Constructs a new {@code XmlWriter}.
     21     * @param out print writer
     22     */
    1923    public XmlWriter(PrintWriter out) {
    2024        this.out = out;
     
    3034    }
    3135
     36    /**
     37     * Encode the given string in XML1.0 format.
     38     * Optimized to fast pass strings that don't need encoding (normal case).
     39     *
     40     * @param unencoded the unencoded input string
     41     * @return XML1.0 string
     42     */
    3243    public static String encode(String unencoded) {
    3344        return encode(unencoded, false);
Note: See TracChangeset for help on using the changeset viewer.