Home | History | Annotate | Download | only in header

Lines Matching refs:Subject

7 * employees are not subject to copyright protection in the United States
48 public class Subject extends SIPHeader implements SubjectHeader {
54 /** subject field
56 protected String subject;
60 public Subject() {
61 super(SUBJECT);
69 if (subject != null) {
70 return subject;
77 * Sets the subject value of the SubjectHeader to the supplied string
78 * subject value.
80 * @param subject - the new subject value of this header
82 * unexpectedly while parsing the subject value.
84 public void setSubject(String subject) throws ParseException {
85 if (subject == null)
88 + " Subject, setSubject(), the subject parameter is null");
89 this.subject = subject;
93 * Gets the subject value of SubjectHeader
95 * @return subject of SubjectHeader
98 return subject;
103 * $Log: Subject.java,v $