org.sandev.TaskHeap.structs
Class NoteStruct

java.lang.Object
  extended byorg.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 authorID
          The author of the 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()
           
 
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

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

authorID

protected long authorID
The author of the note.

reference to class: org.sandev.TaskHeap.structs.ResourceStruct
Constructor Detail

NoteStruct

public NoteStruct()