Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8074042

Unclosed html tag <p> in Javadoc for JComponent.reshape()

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • tbd
    • 8, 9
    • client-libs
    • None

      Unclosed html tag <p> in Javadoc for JComponent.reshape(int x, int y, int w, int h):

      Corresponding JComponent.java fragment:

      /**
           * @deprecated As of JDK 5,
           * replaced by <code>Component.setBounds(int, int, int, int)</code>.
           * <p>
           * Moves and resizes this component.
           *
           * @param x the new horizontal location
           * @param y the new vertical location
           * @param w the new width
           * @param h the new height
           * @see java.awt.Component#setBounds
           */
          @Deprecated
          public void reshape(int x, int y, int w, int h) {
              super.reshape(x, y, w, h);
          }

            Unassigned Unassigned
            ogb Oleg Barbashov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: