All Packages Class Hierarchy This Package Previous Next Index
|  | 
java.lang.Object | +----Acme.Conf.Topic
Topics are contained in conferences, and contain responses. Each topic has a title, and flags saying whether it's retired or frozen.
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.
 
 
 Topic()
	Topic()
   
 addResponse(Session, String, String)
	addResponse(Session, String, String)
   freeze(Session)
	freeze(Session)
   getCreator()
	getCreator()
   getDate()
	getDate()
   getLastResponseNumber()
	getLastResponseNumber()
   getResponse(int)
	getResponse(int)
   getTitle()
	getTitle()
   isFrozen()
	isFrozen()
   isRetired()
	isRetired()
   retire(Session)
	retire(Session)
   unfreeze(Session)
	unfreeze(Session)
   unretire(Session)
	unretire(Session)
   
 Topic
Topic
public Topic()
 
 getDate
getDate
public abstract long getDate()
 getCreator
getCreator
public abstract User getCreator()
 getTitle
getTitle
public abstract String getTitle()
 getLastResponseNumber
getLastResponseNumber
public abstract int getLastResponseNumber()
 getResponse
getResponse
public abstract Response getResponse(int n)
 isRetired
isRetired
public abstract boolean isRetired()
 isFrozen
isFrozen
public abstract boolean isFrozen()
 retire
retire
public abstract void retire(Session session)
Only a host or the topic creator may do this.
 unretire
unretire
public abstract void unretire(Session session)
Only a host or the topic creator may do this.
 freeze
freeze
public abstract void freeze(Session session)
Only a host or the topic creator may do this.
 unfreeze
unfreeze
public abstract void unfreeze(Session session)
Only a host or the topic creator may do this.
 addResponse
addResponse
 public abstract int addResponse(Session session,
                                 String pseud,
                                 String text)
Note that there is no method for linking an existing response. Unlike topics, which can be in multiple conferences, responses can be in only one topic.
All Packages Class Hierarchy This Package Previous Next Index
ACME Java ACME Labs