All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class Acme.Conf.Response

java.lang.Object
   |
   +----Acme.Conf.Response

public abstract class Response
extends Object
A conferencing response.

A response is contained in a topic. Each response has an author (with optional pseudonym), and the response text. It also has flags saying whether it's hidden or scribbled.

This is an abstract class with separate implementations on the client and server sides, mirrored via RPC.

Fetch the software.
Fetch the entire Acme package.

See Also:
Topic

Constructor Index

 o Response()

Method Index

 o getAuthor()
The author of the response.
 o getDate()
The date the response was entered.
 o getNumber()
The number of this response.
 o getPseud()
The author's pseudonym for this response - often the same as the real name, but not always.
 o getScribbleDate()
The time of the scribble.
 o getScribbler()
The user who did the scribbling.
 o getText()
The text of the response.
 o hide(Session)
Hide this response.
 o isHidden()
Whether the response is hidden.
 o isScribbled()
Whether the response is scribbled.
 o scribble(Session)
Scribble this response.
 o unhide(Session)
Unhide this response.

Constructors

 o Response
 public Response()

Methods

 o getNumber
 public abstract int getNumber()
The number of this response.

 o getDate
 public abstract long getDate()
The date the response was entered.

 o getAuthor
 public abstract User getAuthor()
The author of the response.

 o getPseud
 public abstract String getPseud()
The author's pseudonym for this response - often the same as the real name, but not always.

 o getText
 public abstract String getText()
The text of the response.

 o isHidden
 public abstract boolean isHidden()
Whether the response is hidden. The text of hidden responses is normally not shown.

 o isScribbled
 public abstract boolean isScribbled()
Whether the response is scribbled. Scribbling is similar to hiding, but the text is really gone and can never be shown.

 o getScribbler
 public abstract User getScribbler()
The user who did the scribbling.

 o getScribbleDate
 public abstract long getScribbleDate()
The time of the scribble.

 o hide
 public abstract void hide(Session session)
Hide this response.

Only the author or a host may do this.

 o unhide
 public abstract void unhide(Session session)
Unhide this response.

Only the author or a host may do this.

 o scribble
 public abstract void scribble(Session session)
Scribble this response. Scribbling cannot be undone.

Only the author or a host may do this.


All Packages  Class Hierarchy  This Package  Previous  Next  Index

ACME Java  ACME Labs