コード例 #1
0
 /**
  * Loads the object from an object input stream
  *
  * @param istream the object stream to be reading from
  * @throws ClassNotFoundException if there is a casting error
  * @throws IOException an I/O exception of some sort has occurred
  */
 private void readObject(ObjectInputStream istream) throws ClassNotFoundException, IOException {
   internalSetTitle((String) istream.readObject());
   internalSetDescription((String) istream.readObject());
   internalSetLocation((String) istream.readObject());
   internalSetDuration(istream.readLong());
   internalSetPattern((RecurrencePattern) istream.readObject());
 }
コード例 #2
0
 /**
  * Sets all the fields of the appointment, and notifies observers if a change has taken place.
  *
  * @param apptTmple the new appointment fields
  */
 public void setFields(AppointmentTemplateInterface apptTmpl) {
   internalSetTitle(apptTmpl.getTitle());
   internalSetDescription(apptTmpl.getDescription());
   internalSetLocation(apptTmpl.getLocation());
   internalSetDuration(apptTmpl.getDuration());
   internalSetPattern(apptTmpl.getPattern());
   this.notifyObservers();
 }
コード例 #3
0
  /**
   * creates a new AppointmentTemplate
   *
   * @param title Title of the appointment.
   * @param description Description of the appointment.
   * @param location Location of the appointment.
   * @param duration Duration of the appointment in milliseconds.
   */
  public AppointmentTemplate(String title, String description, String location, long duration) {
    super();
    internalSetTitle(title);
    internalSetDescription(description);
    internalSetLocation(location);
    internalSetDuration(duration);
    recPattern = null;

    this.notifyObservers();
  }
コード例 #4
0
 /**
  * Sets the location of the appointment, and notifies observers if a change has taken place.
  *
  * @param loc the new location for the appointment
  * @throws NullPointerException if loc is null
  */
 public void setLocation(String loc) {
   internalSetLocation(loc);
   this.notifyObservers();
 }