1 21 22 27 28 package com.sun.mail.imap.protocol; 29 30 import com.sun.mail.iap.*; 31 32 38 39 public class UID implements Item { 40 41 public final static char [] name = {'U','I','D'}; 42 public int msgno; 43 44 public long uid; 45 46 49 public UID(FetchResponse r) throws ParsingException { 50 msgno = r.getNumber(); 51 r.skipSpaces(); 52 uid = r.readLong(); 53 } 54 } 55 | Popular Tags |