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

Diff of /inetlib/source/gnu/inet/nntp/PairIterator.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 PairIterator  public class PairIterator extends LineIterator
   extends LineIterator  
40  {  {
41    
42    PairIterator(NNTPConnection connection)    PairIterator(NNTPConnection connection)
# Line 47  public class PairIterator Line 46  public class PairIterator
46    
47    /**    /**
48     * Returns the next pair.     * Returns the next pair.
49     */       */
50    public Object next()    public Object next()
51    {    {
52      try      try
53      {      {
54        return nextPair();        return nextPair();
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 pair.     * Returns the next pair.
64     */     */
65    public Pair nextPair()    public Pair nextPair() 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 key = line.substring(start, end);      String key = line.substring(start, end);
73      start = end+1;        start = end + 1;
74      String value = line.substring(start);      String value = line.substring(start);
75        
76      return new Pair(key, value);        return new Pair(key, value);
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