"It is important to point out that the content field of the template is by default set to null (as Java does with all noninitialized object fields upon creation)."
It is from book "JavaSpaces Principles Patterns and Practice"
Here is code:
public class Message implements Entry {
public String content;
public Message() {
}
}
I wonder if this is true, because I watched somewhere on internet that this is not true?