uvi
Class Index.Link

java.lang.Object
  extended by uvi.Index.Link
Enclosing class:
Index

static class Index.Link
extends Object

Represents a single link for a verb. This holds a flag for the source of the link, the text to display for the link, and finally the web address to where the user should be redirected if they click on the link.

NOTE: Any reference to "HTML Files" should be taken as a synonym for "PHP Files." When this documentation was created, only *.html files were used. Later, they were converted to *.php files to facilitate dynamic content (i.e. comments).


Field Summary
(package private)  String link
          The href for this link.
(package private)  String text
          The text to display to the user in the index for this link.
(package private)  int type
          One value from Generator.DS_*, indicating the data source of this link.
 
Constructor Summary
Index.Link(int ty, String tx, String lk)
          Constructs a link object with the specified information.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

type

int type
One value from Generator.DS_*, indicating the data source of this link.


text

String text
The text to display to the user in the index for this link.


link

String link
The href for this link.

Constructor Detail

Index.Link

Index.Link(int ty,
           String tx,
           String lk)
Constructs a link object with the specified information.