candy.util
Class TranscriptMeta

java.lang.Object
  |
  +--candy.core.candyObject
        |
        +--candy.util.TranscriptMeta
All Implemented Interfaces:
CandyTableMeta, net.jini.core.entry.Entry, java.io.Serializable

public class TranscriptMeta
extends candyObject
implements CandyTableMeta

TranscriptMeta contains meta-information about a Transcript

Author:
Jeremy Mullendore (jeremy@cs.jhu.edu)
See Also:
Serialized Form

Field Summary
 java.lang.String handle
          Handle for the transcript
 java.lang.String owner
           
static int T_CHAT
           
static int T_CWT
           
static int T_MEETING
           
static int T_WB
           
 java.lang.Integer type
          the type of Transcript I am
 
Fields inherited from class candy.core.candyObject
description, timestamp
 
Constructor Summary
TranscriptMeta()
          Construct a new TranscriptMeta with null data -- template
TranscriptMeta(java.lang.String h, int t)
          Construct a new TranscriptMeta with given data
TranscriptMeta(java.lang.String h, java.lang.String o, int t)
           
 
Method Summary
 java.lang.Object getColumn1()
          CandyTableMeta implementation
 java.lang.Object getColumn2()
           
 java.lang.Object getColumn3()
           
 java.lang.String getHandle()
          get that thar handle
 java.lang.String getOwner()
           
 java.lang.String toString()
          toString returns the handle
 
Methods inherited from class candy.core.candyObject
getDescription, setDescription, setHandle
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

T_MEETING

public static final int T_MEETING

T_CWT

public static final int T_CWT

T_CHAT

public static final int T_CHAT

T_WB

public static final int T_WB

type

public java.lang.Integer type
the type of Transcript I am

handle

public java.lang.String handle
Handle for the transcript

owner

public java.lang.String owner
Constructor Detail

TranscriptMeta

public TranscriptMeta(java.lang.String h,
                      int t)
Construct a new TranscriptMeta with given data

TranscriptMeta

public TranscriptMeta(java.lang.String h,
                      java.lang.String o,
                      int t)

TranscriptMeta

public TranscriptMeta()
Construct a new TranscriptMeta with null data -- template
Method Detail

toString

public java.lang.String toString()
toString returns the handle
Overrides:
toString in class java.lang.Object

getHandle

public java.lang.String getHandle()
Description copied from class: candyObject
get that thar handle
Specified by:
getHandle in interface CandyTableMeta
Overrides:
getHandle in class candyObject
Following copied from class: candy.core.candyObject
Returns:
handle the name used to grab this here object

getOwner

public java.lang.String getOwner()

getColumn1

public java.lang.Object getColumn1()
CandyTableMeta implementation
Specified by:
getColumn1 in interface CandyTableMeta

getColumn2

public java.lang.Object getColumn2()
Specified by:
getColumn2 in interface CandyTableMeta

getColumn3

public java.lang.Object getColumn3()
Specified by:
getColumn3 in interface CandyTableMeta