Searched refs:list (Results 1 - 25 of 28) sorted by relevance

12

/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/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/main/java/com/sun/mail/imap/protocol/
H A DID.java60 * Parse the server parameter list out of the response.
68 // ;; list of field value pairs
104 * Convert the client parameters into an argument list for the ID command.
112 Argument list = new Argument();
113 // add params to list
115 list.writeNString(e.getKey());
116 list.writeNString(e.getValue());
118 arg.writeArgument(list);
H A DBODYSTRUCTURE.java186 if (r.peekByte() == '(') { // a list follows
364 if (r.peekByte() == '(') { // a list follows
406 ParameterList list = null;
409 list = new ParameterList();
418 "null name in parameter list");
424 list.set(name, value);
426 list.combineSegments();
429 System.out.println("DEBUG IMAP: parameter list NIL");
432 throw new ParsingException("Parameter list parse error");
434 return list;
[all...]
/javamail/client/src/main/java/
H A DFolderTreeNode.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
103 Folder[] sub = folder.list();
H A DStoreTreeNode.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
85 // get the default folder, and list the
89 Folder[] sub = folder.list();
/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/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/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
H A DPOP3Message.java139 msgSize = folder.getProtocol().list(msgnum) - hdrSize;
/javamail/demo/src/main/java/
H A Dfolderlist.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
129 Folder[] f = rf.list(pattern);
179 Folder[] f = folder.list();
H A Dnamespace.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
143 Folder[] fl = folders[i].list();
H A Dpopulate.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
151 srcFolders = src.list();
/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...]
H A DSession.java1254 List<URL> v = Collections.list(cl.getResources(name));
1271 List<URL> v = Collections.list(
/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/demo/src/main/java/internal/
H A Dfpopulate.java9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
160 String[] sf = src.list();
/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/util/logging/
H A DMailHandler.java118 * separated list of <tt>Filter</tt> class names used to create each attachment.
124 * separated list of <tt>Formatter</tt> class names used to create each
128 * list of names or <tt>Formatter</tt> class names of each attachment. The
173 * <li>&lt;handler-name&gt;.mail.bcc a comma separated list of
180 * <li>&lt;handler-name&gt;.mail.cc a comma separated list of
186 * <li>&lt;handler-name&gt;.mail.from a comma separated list of
198 * list of addresses which will be reply-to addresses. Typically, this is set
203 * <li>&lt;handler-name&gt;.mail.to a comma separated list of
2245 final String list = fromLogManager(p.concat(".attachment.filters"));
2246 if (!isEmpty(list)) {
[all...]

Completed in 143 milliseconds

12