org.sandev.TaskHeap.structs
Class NoteStruct

java.lang.Object
  extended by org.sandev.TaskHeap.structs.NoteStruct
Direct Known Subclasses:
Note

public class NoteStruct
extends java.lang.Object

A note is a general comment associated with a PlanComponent.

summary fields: subject

Field Summary
protected  long author
          The author of this note.
protected  java.lang.String comment
          The body text of the note.
protected  java.lang.String subject
          A subject line for this note.
 
Constructor Summary
NoteStruct()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

subject

protected java.lang.String subject
A subject line for this note. The subject lines are used for display purposes, so they should be made as descriptive as possible.

declared invalid value: "TASKHEAP_INVALID_SUBJECT"
Length in characters, normal: 30 max: 80
help text: A descriptive subject line for this note.

comment

protected java.lang.String comment
The body text of the note.

declared invalid value: "TASKHEAP_INVALID_COMMENT"
Length in characters, normal: 512 max: 1048576
help text: The body text of the note.

author

protected long author
The author of this note.

reference to class: org.sandev.TaskHeap.structs.HeapAssociationStruct
help text: The author of this note.
Constructor Detail

NoteStruct

public NoteStruct()