change num() to imapNumber() and nntpNumber(), add comments about semantics
[org.ibex.mail.git] / src / org / ibex / mail / target / MessageArrayMailbox.java
index d2335b8..e733504 100644 (file)
@@ -29,7 +29,7 @@ public class MessageArrayMailbox extends Mailbox.Default {
         public Headers head() { return messages[position].headers; }
         public boolean next() { return ++position < messages.length; }
         public int     uid()  { return position+1; }
-        public int     num()  { return position+1; }
+        public int     imapNumber()  { return position+1; }
         public void    delete() { return; }
 
         public void    set(String key, String val) { return; }