Ignore:
Timestamp:
2010-01-09T23:38:57+01:00 (15 years ago)
Author:
stoecker
Message:

fixed line endings of recent checkins

Location:
trunk/src/org/openstreetmap/josm/gui/widgets
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractTextComponentValidator.java

    r2711 r2801  
    2222/**
    2323 * This is an abstract class for a validator on a text component.
    24  * 
     24 *
    2525 * Subclasses implement {@see #validate()}. {@see #validate()} is invoked whenever
    2626 * <ul>
     
    2929 *   <li>the text component is a {@see JTextField} and an {@see ActionEvent} is detected</li>
    3030 * </ul>
    31  * 
    32  * 
     31 *
     32 *
    3333 */
    3434public abstract class AbstractTextComponentValidator implements ActionListener, FocusListener, DocumentListener, PropertyChangeListener{
     
    7070    /**
    7171     * Replies the decorated text component
    72      * 
     72     *
    7373     * @return the decorated text component
    7474     */
     
    7979    /**
    8080     * Creates the validator and weires it to the text component <code>tc</code>.
    81      * 
     81     *
    8282     * @param tc the text component. Must not be null.
    8383     * @throws IllegalArgumentException thrown if tc is null
     
    9797    /**
    9898     * Implement in subclasses to validate the content of the text component.
    99      * 
     99     *
    100100     */
    101101    public abstract void validate();
     
    104104     * Replies true if the current content of the decorated text component is valid;
    105105     * false otherwise
    106      * 
     106     *
    107107     * @return true if the current content of the decorated text component is valid
    108108     */
  • trunk/src/org/openstreetmap/josm/gui/widgets/HtmlPanel.java

    r2711 r2801  
    1515 * This panel can be used to display larger larger sections of formatted text in
    1616 * HTML.
    17  * 
     17 *
    1818 * It displays HTML text in the same font as {@see JLabel}. Hyperlinks are rendered in
    1919 * blue and they are underlined. There is also a CSS rule for the HTML tag &lt;strong&gt;
    2020 * configured.
    21  * 
     21 *
    2222 */
    2323public class HtmlPanel extends JPanel {
     
    6363    /**
    6464     * Replies the editor pane used internally to render the HTML text.
    65      * 
     65     *
    6666     * @return the editor pane used internally to render the HTML text.
    6767     */
     
    7373     * Sets the current text to display. <code>text</code> is a html fragment.
    7474     * If null, empty string is assumed.
    75      * 
     75     *
    7676     * @param text the text to display
    7777     */
Note: See TracChangeset for help on using the changeset viewer.