Skip to content

Commit 28da0b6

Browse files
committed
javadoc fixes and removed useless template doc
1 parent f198546 commit 28da0b6

28 files changed

+5
-113
lines changed

src/main/java/ca/weblite/nativeutils/NativeUtils.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
/**
1111
* Simple library class for working with JNI (Java Native Interface)
1212
*
13-
* @see http://frommyplayground.com/how-to-load-native-jni-library-from-jar
14-
* @author Adam Heirnich <[email protected]>, http://www.adamh.cz
13+
* @see <a href="http://frommyplayground.com/how-to-load-native-jni-library-from-jar">http://frommyplayground.com/how-to-load-native-jni-library-from-jar</a>
14+
* @author Adam Heirnich <a href="mailto:mailto:[email protected]"></a>, <a href="http://www.adamh.cz"></a>
1515
* @version $Id: $Id
1616
* @since 1.1
1717
*/
@@ -39,9 +39,9 @@ public static void loadLibraryFromJar(String path) throws IOException {
3939
* The file from JAR is copied into system temporary directory and then loaded. The temporary file is deleted after exiting.
4040
* Method uses String as filename because the pathname is "abstract", not system-dependent.
4141
*
42-
* @throws java.lang.IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of {@see File#createTempFile(java.lang.String, java.lang.String)}).
43-
* @throws java.lang.IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of {@see File#createTempFile(java.lang.String, java.lang.String)}).
44-
* @throws java.lang.IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of {@see File#createTempFile(java.lang.String, java.lang.String)}).
42+
* @throws java.lang.IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of @see File#createTempFile(java.lang.String, java.lang.String)).
43+
* @throws java.lang.IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of @see File#createTempFile(java.lang.String, java.lang.String)).
44+
* @throws java.lang.IllegalArgumentException If the path is not absolute or if the filename is shorter than three characters (restriction of @see File#createTempFile(java.lang.String, java.lang.String)).
4545
* @param path a {@link java.lang.String} object.
4646
* @param source a {@link java.lang.Class} object.
4747
* @throws java.io.IOException if any.

src/main/java/ca/weblite/objc/Client.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62
import static ca.weblite.objc.RuntimeUtils.*;
73
import com.sun.jna.Pointer;

src/main/java/ca/weblite/objc/NSObject.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73
import static ca.weblite.objc.RuntimeUtils.cls;

src/main/java/ca/weblite/objc/Peerable.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73
import com.sun.jna.Pointer;

src/main/java/ca/weblite/objc/PeerableRecipient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73
/**

src/main/java/ca/weblite/objc/Proxy.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73
import static ca.weblite.objc.RuntimeUtils.*;

src/main/java/ca/weblite/objc/Recipient.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73

src/main/java/ca/weblite/objc/Runtime.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73
import com.sun.jna.Library;

src/main/java/ca/weblite/objc/RuntimeUtils.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73

src/main/java/ca/weblite/objc/TypeMapper.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
/*
2-
* To change this template, choose Tools | Templates
3-
* and open the template in the editor.
4-
*/
51
package ca.weblite.objc;
62

73
import ca.weblite.objc.mappers.NSObjectMapping;

0 commit comments

Comments
 (0)