Re: API changes
Brian Smith <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.mdr.devel |
|---|---|
| Organization | CollabNet Hosting |
| Message-ID | <[email protected]> |
Here's a simple change to the JavaDoc that provides a cross-reference to
MDRChangeEvent and the "Constant Field Values" page. Also, it corrects
the {@see MDRChangeEvent#isOfType} => {@see MDRChangeEvent#isOfType(int)}
- Brian
Holger Krug wrote:
> On Fri, Jul 19, 2002 at 11:03:47AM +0200, Martin Matula wrote:
>
>
>> In addition I have updated all the links to JavaDoc to point to
>>address which now contains JavaDoc generated automatically every
>>night. I have removed javadoc.zip from our Downloads page. Instead
>>the downloadable zip file containing latest MDR javadoc is linked
>>from docs page and is also generated automatically.
>
>
> Martin, please take a look at:
>
> http://www.netbeans.org/download/dev/javadoc/MdrAPIs/index.html
>
> The figure still has to be added, I didn't do this because I did not
> know have to integrate this into the build process according to
> www.netbeans.org conventions. The png is issuezilla. I can send the
> sources (Dia) if you want to have them.
>
> Good luck !
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
MDRChangeSource.java.patch
(text/plain, 1.8 KB)
Index: src/org/netbeans/api/mdr/events/MDRChangeSource.java
===================================================================
RCS file: /cvs/mdr/src/org/netbeans/api/mdr/events/MDRChangeSource.java,v
retrieving revision 1.3
diff -u -w -r1.3 MDRChangeSource.java
--- src/org/netbeans/api/mdr/events/MDRChangeSource.java 19 Jul 2002 12:02:27 -0000 1.3
+++ src/org/netbeans/api/mdr/events/MDRChangeSource.java 19 Jul 2002 17:29:50 -0000
@@ -64,8 +64,10 @@
/** Registers a listener for receiving notifications about events the type
* of which matches <code>mask</code>.
* @param listener Object that implements {@link MDRChangeListener} interface.
- * @param eventMask bitmask to be used in a call to {@link MDRChangeEvent#isOfType}
- * to filter events based on the mask
+ * @param mask bitmask to be used in a call to {@link MDRChangeEvent#isOfType(int)}
+ * to filter events based on the mask. The masks are defined in {@link MDRChangeEvent}
+ * and the interfaces that extend it.
+ * @see <a href="../../../../../constant-values.html">Constant Field Values</a>
*/
public void addListener(MDRChangeListener listener, int mask);
/** Removes listener from the list of objects registered for events notifications.
@@ -77,7 +79,9 @@
* proceeds listening on the remaining event types.
* @param listener Object that implements {@link MDRChangeListener} interface.
* @param mask determines the types of events the listener shall stop
- * to listen on
+ * to listen on. The masks are defined in {@link MDRChangeEvent}
+ * and the interfaces that extend it.
+ * @see <a href="../../../../../constant-values.html">Constant Field Values</a>
*/
public void removeListener(MDRChangeListener listener, int mask);
}