View Javadoc

1   /*
2   
3   This software is OSI Certified Open Source Software.
4   OSI Certified is a certification mark of the Open Source Initiative.
5   
6   The license (Mozilla version 1.0) can be read at the MMBase site.
7   See http://www.MMBase.org/license
8   
9   */
10  package net.sf.mmapps.modules.linkchecker;
11  
12  import java.util.Vector;
13  
14  /***
15   * @author Kees Jongenburger
16   */
17  public class Links extends Vector {
18      public Link getLink(int index) {
19          return (Link)get(index);
20      }
21  }