home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 October / PCO1097.ISO / FilesBBS / WIN95 / IAVAZIP.EXE / DATA.Z / Href.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-08-18  |  791 b   |  16 lines

  1. package com.sfs.html;
  2.  
  3. import java.net.URL;
  4.  
  5. class Href {
  6.    protected int startLine;
  7.    protected int startOffset;
  8.    protected int endLine;
  9.    protected int endOffset;
  10.    protected URL url;
  11.  
  12.    public String toString() {
  13.       return "Href(startLine=" + this.startLine + ",startOffset=" + this.startOffset + ",endLine=" + this.endLine + ",endOffset=" + this.endOffset + ",url=" + this.url + ")";
  14.    }
  15. }
  16.