/[classpath]/inetlib/source/gnu/inet/nntp/HeaderIterator.java
ViewVC logotype

Diff of /inetlib/source/gnu/inet/nntp/HeaderIterator.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by dog, Sun Oct 19 08:51:37 2003 UTC revision 1.2 by dog, Sun Oct 19 16:16:50 2003 UTC
# Line 36  import java.util.NoSuchElementException; Line 36  import java.util.NoSuchElementException;
36   * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>   * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>
37   * @version $Revision$ $Date$   * @version $Revision$ $Date$
38   */   */
39  public class HeaderIterator  public class HeaderIterator extends LineIterator
   extends LineIterator  
40  {  {
41    
42    HeaderIterator(NNTPConnection connection)    HeaderIterator(NNTPConnection connection)
# Line 47  public class HeaderIterator Line 46  public class HeaderIterator
46    
47    /**    /**
48     * Returns the next header entry.     * Returns the next header entry.
49     */       */
50    public Object next()    public Object next()
51    {    {
52      try      try
53      {      {
54        return nextHeaderEntry();        return nextHeaderEntry();
55      }      }
56      catch (IOException e)      catch(IOException e)
57      {      {
58        throw new NoSuchElementException("I/O error: "+e.getMessage());        throw new NoSuchElementException("I/O error: " + e.getMessage());
59      }      }
60    }    }
61    
62    /**    /**
63     * Returns the next header entry.     * Returns the next header entry.
64     */     */
65    public HeaderEntry nextHeaderEntry()    public HeaderEntry nextHeaderEntry() throws IOException
     throws IOException  
66    {    {
67      String line = nextLine();      String line = nextLine();
68        
69      // Parse line      // Parse line
70      int start = 0, end;      int start = 0, end;
71      end = line.indexOf(' ', start);        end = line.indexOf(' ', start);
72      String articleId = line.substring(start, end);      String articleId = line.substring(start, end);
73      start = end+1;        start = end + 1;
74      String header = line.substring(start);      String header = line.substring(start);
75        
76      return new HeaderEntry(articleId, header);        return new HeaderEntry(articleId, header);
77    }    }
78    
79  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26