@@ -104,7 +104,7 @@ public static Pointer cls(Peerable peer){
104104 *
105105 * @param cls The pointer to the class whose name we wish to retrieve.
106106 * @return The name of the class.
107- * @see Runtime. class_getName()
107+ * @see Runtime# class_getName(Pointer )
108108 */
109109 public static String clsName (Pointer cls ){
110110 return rt .class_getName (cls );
@@ -115,7 +115,7 @@ public static String clsName(Pointer cls){
115115 * the class pointer. This will return the class name.
116116 *
117117 * @param peer a {@link ca.weblite.objc.Peerable} object.
118- * @see Runtime. class_getName()
118+ * @see Runtime# class_getName(Pointer )
119119 * @return a {@link java.lang.String} object.
120120 */
121121 public static String clsName (Peerable peer ){
@@ -181,7 +181,7 @@ public static String selName(Peerable peer){
181181 * boolean values, as this will automatically choose the correct underlying
182182 * message function depending on the return type reported by the message
183183 * signature.
184- * @see msgDouble()
184+ * @see # msgDouble(String, String, Object... )
185185 */
186186 public static long msg (String cls , String msg , Object ... args ){
187187 return msg (cls (cls ), msg , args );
@@ -204,7 +204,7 @@ public static long msg(String cls, String msg, Object... args){
204204 * boolean values, as this will automatically choose the correct underlying
205205 * message function depending on the return type reported by the message
206206 * signature.
207- * @see msgDouble()
207+ * @see # msgDouble(String, Pointer, Object... )
208208 */
209209 public static long msg (String cls , Pointer msg , Object ... args ){
210210 return msg (cls (cls ), msg , args );
@@ -227,7 +227,7 @@ public static long msg(String cls, Pointer msg, Object... args){
227227 * boolean values, as this will automatically choose the correct underlying
228228 * message function depending on the return type reported by the message
229229 * signature.
230- * @see msgDouble()
230+ * @see # msgDouble(Pointer, String, Object... )
231231 * @param receiver a {@link com.sun.jna.Pointer} object.
232232 */
233233 public static long msg (Pointer receiver , String msg , Object ... args ){
@@ -249,7 +249,7 @@ public static long msg(Pointer receiver, String msg, Object... args){
249249 * boolean values, as this will automatically choose the correct underlying
250250 * message function depending on the return type reported by the message
251251 * signature.
252- * @see msgDouble()
252+ * @see # msgDouble(Pointer, Pointer, Object... )
253253 * @param receiver a {@link com.sun.jna.Pointer} object.
254254 * @param selector a {@link com.sun.jna.Pointer} object.
255255 */
0 commit comments