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

com.belladati.sdk.report.Comment Maven / Gradle / Ivy

Go to download

The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.

There is a newer version: 0.9.15.1
Show newest version
package com.belladati.sdk.report;

import java.util.Date;

import com.belladati.sdk.user.UserInfo;

/**
 * A comment entry in a BellaDati report.
 * 
 * @author Chris Hennigfeld
 */
public interface Comment {

	/**
	 * Returns an info object associated with the comment's author.
	 * 
	 * @return an info object associated with the comment's author
	 */
	UserInfo getAuthorInfo();

	/**
	 * Returns the text content of this comment.
	 * 
	 * @return the text content of this comment
	 */
	String getText();

	/**
	 * Returns the date/time when this comment was posted.
	 * 
	 * @return the date/time when this comment was posted
	 */
	Date getDateTime();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy