Package er.ajax.example2.model

Source Code of er.ajax.example2.model.Comment

package er.ajax.example2.model;

import com.webobjects.foundation.NSTimestamp;

public class Comment {
  private NSTimestamp _creationDate;
  private String _text;

  public Comment() {
    _creationDate = new NSTimestamp();
  }

  public NSTimestamp creationDate() {
    return _creationDate;
  }

  public void setText(String text) {
    _text = text;
  }

  public String text() {
    return _text;
  }
}
TOP

Related Classes of er.ajax.example2.model.Comment

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.