#103300: Improving javadoc release60-beta1-javaeesdk_root release60-beta1-wtk252-test_root version-2-3-112
authorjtulach@netbeans.org
Tue, 21 Aug 2007 12:53:16 +0000
changeset 2916294d05f297b
parent 290 148a9e33bb19
child 292 7e40f9e8b667
#103300: Improving javadoc
openide.util/src/org/openide/util/lookup/Lookups.java
     1.1 --- a/openide.util/src/org/openide/util/lookup/Lookups.java	Fri Aug 17 20:13:12 2007 +0000
     1.2 +++ b/openide.util/src/org/openide/util/lookup/Lookups.java	Tue Aug 21 12:53:16 2007 +0000
     1.3 @@ -107,7 +107,8 @@
     1.4       * from time to time. The returned lookup checks every time somebody calls
     1.5       * <code>lookup</code> or <code>lookupItem</code> method whether the
     1.6       * provider still returns the same lookup. If not, it updates state of
     1.7 -     * all <code>Lookup.Result</code>s that it created (and that still exists).
     1.8 +     * all {@link org.openide.util.Lookup.Result}s 
     1.9 +     * that it created (and that still exists).
    1.10       * <P>
    1.11       * The user of this method has to implement its provider's <code>getLookup</code>
    1.12       * method (must be thread safe and fast, will be called often and from any thread)
    1.13 @@ -115,7 +116,8 @@
    1.14       * changes the return value from the <code>getLookup</code> method and wants
    1.15       * to notify listeners on the lookup about that it should trigger the event
    1.16       * firing, for example by calling <code>lookup.lookup (Object.class)</code>
    1.17 -     * that forces check of the return value of <code>getLookup</code>.
    1.18 +     * directly on the lookup returned by this method
    1.19 +     * that forces a check of the return value of {@link org.openide.util.Lookup.Provider#getLookup}</code>.
    1.20       *
    1.21       * @param provider the provider that returns a lookup to delegate to
    1.22       * @return lookup delegating to the lookup returned by the provider