Someone forgot second quotation marks which brokes javadoc (completely in code completion) release50-UC_base release50_j2se142_12_base
authormkrauskopf@netbeans.org
Thu, 01 Dec 2005 12:05:09 +0000
changeset 934442a1e6a7ec
parent 92 42dc82cfc022
child 94 ac31a9256e0c
Someone forgot second quotation marks which brokes javadoc (completely in code completion)
openide.util/src/org/openide/util/NbBundle.java
openide.util/src/org/openide/util/actions/CallableSystemAction.java
openide.util/src/org/openide/util/actions/CallbackSystemAction.java
openide.util/src/org/openide/util/actions/SystemAction.java
     1.1 --- a/openide.util/src/org/openide/util/NbBundle.java	Tue Nov 29 23:13:02 2005 +0000
     1.2 +++ b/openide.util/src/org/openide/util/NbBundle.java	Thu Dec 01 12:05:09 2005 +0000
     1.3 @@ -338,7 +338,7 @@
     1.4      * safer when used from a module as this method relies on the module's
     1.5      * classloader to currently be part of the system classloader. The
     1.6      * IDE does add enabled modules to this classloader, however calls to
     1.7 -    * this variant of the method made in <a href="@org-openide-modules@/org/openide/modules/ModuleInstall.html#validate()>ModuleInstall.validate</a>,
     1.8 +    * this variant of the method made in <a href="@org-openide-modules@/org/openide/modules/ModuleInstall.html#validate()">ModuleInstall.validate</a>,
     1.9      * or made soon after a module is uninstalled (due to background threads)
    1.10      * could fail unexpectedly.
    1.11      * @param baseName bundle basename
     2.1 --- a/openide.util/src/org/openide/util/actions/CallableSystemAction.java	Tue Nov 29 23:13:02 2005 +0000
     2.2 +++ b/openide.util/src/org/openide/util/actions/CallableSystemAction.java	Thu Dec 01 12:05:09 2005 +0000
     2.3 @@ -26,7 +26,7 @@
     2.4  /** An action which may be called programmatically.
     2.5  * Typically a presenter will call its {@link #performAction} method,
     2.6  * which must be implemented.
     2.7 -* <p>Provides default presenters using the <a href="@org-openide-awt@/org/openide/awt/Actions.html>Actions</a> utility class.
     2.8 +* <p>Provides default presenters using the <a href="@org-openide-awt@/org/openide/awt/Actions.html">Actions</a> utility class.
     2.9  *
    2.10  * @author   Ian Formanek, Jaroslav Tulach, Jan Jancura, Petr Hamernik
    2.11  */
    2.12 @@ -73,7 +73,7 @@
    2.13  
    2.14      /** Actually perform the action.
    2.15      * This is the method which should be called programmatically.
    2.16 -    * Presenters in <a href="@org-openide-awt@/org/openide/awt/Actions.html>Actions</a> use this.
    2.17 +    * Presenters in <a href="@org-openide-awt@/org/openide/awt/Actions.html">Actions</a> use this.
    2.18      * <p>See {@link SystemAction#actionPerformed} for a note on
    2.19      * threading usage: in particular, do not access GUI components
    2.20      * without explicitly asking for the AWT event thread!
     3.1 --- a/openide.util/src/org/openide/util/actions/CallbackSystemAction.java	Tue Nov 29 23:13:02 2005 +0000
     3.2 +++ b/openide.util/src/org/openide/util/actions/CallbackSystemAction.java	Thu Dec 01 12:05:09 2005 +0000
     3.3 @@ -101,9 +101,9 @@
     3.4      * <a href="http://openide.netbeans.org/proposals/actions/design.html#callback">ActionMap proposal</a>
     3.5      * has been developed.
     3.6      * <P>
     3.7 -    * So if you are providing a <a href="@org-openide-windows@/org/openide/windows/TopComponent.html>TopComponent</a>
     3.8 +    * So if you are providing a <a href="@org-openide-windows@/org/openide/windows/TopComponent.html">TopComponent</a>
     3.9      * and want to provide
    3.10 -    * your own handling of <a href="@org-openide-actions@/org/openide/actions/CopyAction.html>CopyAction</a> use following code:
    3.11 +    * your own handling of <a href="@org-openide-actions@/org/openide/actions/CopyAction.html">CopyAction</a> use following code:
    3.12      * <PRE>
    3.13      * TopComponent tc = ...;
    3.14      * javax.swing.Action yourCopyAction = ...; // the action to invoke instead of Copy
     4.1 --- a/openide.util/src/org/openide/util/actions/SystemAction.java	Tue Nov 29 23:13:02 2005 +0000
     4.2 +++ b/openide.util/src/org/openide/util/actions/SystemAction.java	Thu Dec 01 12:05:09 2005 +0000
     4.3 @@ -289,7 +289,7 @@
     4.4      * If e.g. myIcon.gif is accompanied with myIcon_pressed.gif, myIcon_disabled.gif
     4.5      * and/or myIcon_rollover.gif these images are used to call methods on JButton.setPressedIcon(),
     4.6      * JButton.setDisabledIcon() and/or JButton.setRolloverIcon() with appropriate images.
     4.7 -    * Please check <a href="@org-openide-awt@/org/openide/awt/Actions.html#connect(AbstractButton,%20Action)>Actions.connect</a> for
     4.8 +    * Please check <a href="@org-openide-awt@/org/openide/awt/Actions.html#connect(AbstractButton,%20Action)">Actions.connect</a> for
     4.9      * additional info how this is achieved (using special "iconBase" key for getValue).
    4.10      * As of APIs version 3.24, this path will be used for a localized search automatically.
    4.11      * If you do not want an icon, do <em>not</em> override this to return a blank icon. Leave it null,