Skip to content

Commit eea8e4f

Browse files
committed
Fix Message javadoc
It appears javadoc (and Eclipse IDE) does not support javadoc comments for multiple fields as part of the same declaration.
1 parent 9708eaa commit eea8e4f

File tree

1 file changed

+31
-33
lines changed

1 file changed

+31
-33
lines changed

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

Lines changed: 31 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package ca.weblite.objc;
22

3-
import com.sun.jna.Pointer;
43
import java.util.ArrayList;
54
import java.util.List;
65

6+
import com.sun.jna.Pointer;
7+
78
/**
89
* A structure the encapsulates a message. This is an optional alternative
910
* way of sending messages to the Objective-C runtime.
@@ -72,38 +73,35 @@ public class Message {
7273
*/
7374
public int status = 0;
7475

75-
public boolean
76-
/**
77-
* Whether to coerce the input of the message.
78-
*/
79-
coerceInput,
80-
/**
81-
* Whether to coerce the output of the message.
82-
*/
83-
coerceOutput;
84-
85-
86-
public boolean
87-
/**
88-
* Whether the input was, in fact coerced (set when the message
89-
* is run).
90-
*/
91-
inputWasCoerced,
92-
/**
93-
* Whether the output was, in fact, coerced. Set when the message
94-
* is run.
95-
*/
96-
outputWasCoerced;
97-
98-
public Message
99-
/**
100-
* Reference to the next message in the message chain.
101-
*/
102-
next,
103-
/**
104-
* Reference to the previous message in the message chain.
105-
*/
106-
previous;
76+
/**
77+
* Whether to coerce the input of the message.
78+
*/
79+
public boolean coerceInput;
80+
/**
81+
* Whether to coerce the output of the message.
82+
*/
83+
public boolean coerceOutput;
84+
85+
86+
/**
87+
* Whether the input was, in fact coerced. Set when the message
88+
* is run.
89+
*/
90+
public boolean inputWasCoerced;
91+
/**
92+
* Whether the output was, in fact, coerced. Set when the message
93+
* is run.
94+
*/
95+
public boolean outputWasCoerced;
96+
97+
/**
98+
* Reference to the next message in the message chain.
99+
*/
100+
public Message next;
101+
/**
102+
* Reference to the previous message in the message chain.
103+
*/
104+
public Message previous;
107105

108106

109107
/**

0 commit comments

Comments
 (0)