All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.anaptecs.jeaf.xfun.samples.trace.Book Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
/**
 * Copyright 2004 - 2020 anaptecs GmbH, Burgstr. 96, 72764 Reutlingen, Germany
 *
 * All rights reserved.
 */
package com.anaptecs.jeaf.xfun.samples.trace;

import java.util.Calendar;

public class Book {
  private String author;

  private String title;

  private Calendar publishingDate;

  public String getAuthor( ) {
    return author;
  }

  public void setAuthor( String pAuthor ) {
    author = pAuthor;
  }

  public String getTitle( ) {
    return title;
  }

  public void setTitel( String pTitel ) {
    title = pTitel;
  }

  public Calendar getPublishingDate( ) {
    return publishingDate;
  }

  public void setPublishingDate( Calendar pPublishingDate ) {
    publishingDate = pPublishingDate;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy