View Javadoc

1   package ch.odi.justblog.discovery;
2   
3   import java.io.InputStream;
4   import java.net.URL;
5   
6   /***
7    * Extracts and parses link elements from a HTML document.  
8    *
9    * @author oglueck
10   */
11  public class LinkExtractor {
12  
13      /***
14       * 
15       */
16      public LinkExtractor(InputStream in) {
17      }
18      
19      public URL getLink(String rel, String type) {
20          throw new RuntimeException("not implemented yet");
21      }
22  
23  }