jna/jna-3.2.7-gcj-javadoc.patch

43 lines
2.3 KiB
Diff
Raw Normal View History

2010-07-22 09:58:03 +00:00
diff -up ./build.xml.gcj-javadoc ./build.xml
2010-07-23 22:57:49 +00:00
--- ./build.xml.gcj-javadoc 2010-07-23 21:41:42.000000000 +0200
+++ ./build.xml 2010-07-23 21:43:12.161570259 +0200
@@ -570,8 +570,6 @@
2010-07-22 09:58:03 +00:00
<group title="Java Native Access" packages="com.sun.jna,com.sun.jna.ptr,com.sun.jna.types,com.sun.jna.win32"/>
2010-07-23 22:57:49 +00:00
<group title="Platform Utilities" packages="com.sun.jna.platform,com.sun.jna.platform.dnd"/>
<group title="Platform Specific" packages="com.sun.jna.platform.*"/>
2010-07-22 09:58:03 +00:00
-
2010-04-22 19:50:09 +00:00
- <arg value="-notimestamp"/>
</javadoc>
2010-07-23 22:57:49 +00:00
</target>
2010-07-22 09:58:03 +00:00
diff -up ./src/com/sun/jna/Function.java.gcj-javadoc ./src/com/sun/jna/Function.java
2010-07-23 22:57:49 +00:00
--- ./src/com/sun/jna/Function.java.gcj-javadoc 2009-10-24 17:43:53.000000000 +0200
+++ ./src/com/sun/jna/Function.java 2010-07-23 21:41:42.148570758 +0200
2010-07-22 09:58:03 +00:00
@@ -76,7 +76,7 @@ public class Function extends Pointer {
2010-04-22 19:50:09 +00:00
* Library in which to find the native function
* @param functionName
* Name of the native function to be linked with
- * @throws {@link UnsatisfiedLinkError} if the library is not found or
+ * @throws UnsatisfiedLinkError if the library is not found or
* the given function name is not found within the library.
*/
public static Function getFunction(String libraryName, String functionName) {
2010-07-22 09:58:03 +00:00
@@ -97,7 +97,7 @@ public class Function extends Pointer {
2010-04-22 19:50:09 +00:00
* @param callFlags
* Function <a href="#callflags">call flags</a>
*
- * @throws {@link UnsatisfiedLinkError} if the library is not found or
+ * @throws UnsatisfiedLinkError if the library is not found or
* the given function name is not found within the library.
*/
public static Function getFunction(String libraryName, String functionName, int callFlags) {
2010-07-22 09:58:03 +00:00
@@ -161,7 +161,7 @@ public class Function extends Pointer {
2010-04-22 19:50:09 +00:00
* Name of the native function to be linked with
* @param callFlags
* Function <a href="#callflags">call flags</a>
- * @throws {@link UnsatisfiedLinkError} if the given function name is
+ * @throws UnsatisfiedLinkError if the given function name is
* not found within the library.
*/
Function(NativeLibrary library, String functionName, int callFlags) {