home *** CD-ROM | disk | FTP | other *** search
- package com.sfs.html;
-
- import java.net.URL;
-
- class Href {
- protected int startLine;
- protected int startOffset;
- protected int endLine;
- protected int endOffset;
- protected URL url;
-
- public String toString() {
- return "Href(startLine=" + this.startLine + ",startOffset=" + this.startOffset + ",endLine=" + this.endLine + ",endOffset=" + this.endOffset + ",url=" + this.url + ")";
- }
- }
-