< prev index next >

src/java.desktop/share/classes/javax/swing/text/html/FrameView.java

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -141,12 +141,11 @@
      * Also determines if the FrameView should be editable
      * or not based on whether the JTextComponent that
      * contains it is editable. And then proceeds to call
      * the superclass to do the paint().
      *
-     * @param parent View
-     * @see text.ComponentView#paint
+     * @see javax.swing.text.ComponentView#paint
      */
     public void paint(Graphics g, Shape allocation) {
 
         Container host = getContainer();
         if (host != null && htmlPane != null &&

@@ -287,12 +286,10 @@
      * and there is not nested framesets then the target is
      * reset to _top.  If the target is _top, in addition to
      * firing the event to the outermost JEditorPane, this
      * method also invokes the setPage() method and explicitly
      * replaces the current document with the destination url.
-     *
-     * @param HyperlinkEvent
      */
     public void hyperlinkUpdate(HyperlinkEvent evt) {
 
         JEditorPane c = getOutermostJEditorPane();
         if (c == null) {
< prev index next >