Searched defs:list (Results 1 - 15 of 15) sorted by relevance

/javamail/mail/src/main/java/javax/mail/internet/
H A DContentDisposition.java58 private ParameterList list; // parameter list field in class:ContentDisposition
69 * @param list ParameterList
72 public ContentDisposition(String disposition, ParameterList list) { argument
74 this.list = list;
100 list = new ParameterList(rem);
121 if (list == null)
124 return list.get(name);
135 return list;
167 setParameterList(ParameterList list) argument
[all...]
H A DContentType.java59 private ParameterList list; // parameter list field in class:ContentType
71 * @param list ParameterList
74 ParameterList list) {
77 this.list = list;
117 list = new ParameterList(rem);
157 if (list == null)
160 return list.get(name);
170 return list;
73 ContentType(String primaryType, String subType, ParameterList list) argument
207 setParameterList(ParameterList list) argument
[all...]
H A DParameterList.java65 * when parsing a parameter list allows parameter values
92 private Map<String, Object> list = new LinkedHashMap<String, Object>(); field in class:ParameterList
99 * IMAP provider accumulates pre-parsed pieces of a parameter list.
229 * Constructor that takes a parameter-list string. The String
232 * Note that an empty parameter-list string is valid and will be
235 * @param s the parameter-list string.
258 throw new ParseException("In parameter list <" + s + ">" +
266 throw new ParseException("In parameter list <" + s + ">" +
282 throw new ParseException("In parameter list <" + s + ">" +
291 list
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DDefaultFolder.java71 public synchronized Folder[] list(final String pattern) method in class:DefaultFolder
77 return p.list("", pattern);
H A DIMAPFolder.java408 * of the list method, but this also allows getFolder
585 return p.list("", lname);
637 public Folder[] list(String pattern) throws MessagingException { method in class:IMAPFolder
665 return p.list("", fullName + c + pattern);
708 return p.list(fullName, "");
711 return p.list("", fullName);
806 ListInfo[] li = p.list("", fullName);
861 return p.list("", lname);
915 Folder[] f = list();
2137 * list
[all...]
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DFileInterface.java149 * @return an array of file names. This list will include all
152 public String[] list(); method in interface:FileInterface
155 * Uses the specified filter to list files in a directory.
160 public String[] list(FilenameFilter filter); method in interface:FileInterface
H A DMboxFolder.java111 public Folder[] list(String pattern) throws MessagingException { method in class:MboxFolder
116 return list(null, pattern, true);
118 return list(name + File.separator, pattern, false);
122 * Version of list shared by MboxStore and MboxFolder.
124 protected Folder[] list(String ref, String pattern, boolean fromStore) method in class:MboxFolder
949 * the appropriate subclass is created by the list method.
956 * Support routines for list().
998 * The recursive part of generating the list of mailboxes.
1016 sl = fdir.list();
1063 * Pattern matching support class for list()
[all...]
/javamail/mail/src/test/java/com/sun/mail/pop3/
H A DPOP3Handler.java143 this.list();
186 public void list() throws IOException { method in class:POP3Handler
/javamail/mail/src/test/java/com/sun/mail/util/
H A DWriteTimeoutSocketTest.java276 public void list(String line) throws IOException { method in class:WriteTimeoutSocketTest.TimeoutHandler
/javamail/mail/src/main/java/com/sun/mail/pop3/
H A DDefaultFolder.java72 public Folder[] list(String pattern) throws MessagingException { method in class:DefaultFolder
H A DPOP3Folder.java120 public Folder[] list(String pattern) throws MessagingException { method in class:POP3Folder
505 is = port.list();
545 return port.list();
H A DProtocol.java402 synchronized int list(int msg) throws IOException { method in class:Protocol
420 synchronized InputStream list() throws IOException { method in class:Protocol
/javamail/mail/src/test/java/com/sun/mail/imap/
H A DIMAPHandler.java236 list(currentLine);
359 public void list(String line) throws IOException { method in class:IMAPHandler
/javamail/mail/src/main/java/javax/mail/
H A DFolder.java87 * the <code>list</code> or <code>listSubscribed</code> methods
91 * objects. Likewise for the <code>list</code> and <code>listSubscribed</code>
264 * Returns a list of Folders belonging to this Folder's namespace
277 * <code>list("*")</code> on "Personal" will return the whole
279 * <code>list("%")</code> on "Personal" will return "Finance" and
281 * <code>list("Jokes")</code> on "Personal" will return "Jokes".<br>
282 * <code>list("Stock*")</code> on "Finance" will return "Stocks"
299 public abstract Folder[] list(String pattern) throws MessagingException; method in class:Folder
302 * Returns a list of subscribed Folders belonging to this Folder's
305 * <code>list</cod
350 public Folder[] list() throws MessagingException { method in class:Folder
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DIMAPProtocol.java277 * The "*" in the middle of the capability list causes
1246 * Generate a QRESYNC argument list based on the ResyncData.
1456 * @param pattern pattern to list
1461 public ListInfo[] list(String ref, String pattern) method in class:IMAPProtocol
1470 * @param pattern pattern to list
1484 * @param cmd the list command
2084 // Copy the list into 'matches'
2471 // Cycle thru the list of charsets
2544 // Copy the list into 'matches'
2635 // Copy the list int
[all...]

Completed in 444 milliseconds