Searched defs:name (Results 1 - 25 of 79) sorted by relevance

1234

/javamail/client/src/main/java/
H A DComponentFrame.java15 * - Neither the name of Oracle nor the names of its
56 * creates the frame with the given name
58 * @param name the name of the Frame
60 public ComponentFrame(Component what, String name) { argument
61 super(name);
/javamail/mail/src/main/java/javax/mail/
H A DMailSessionDefinition.java26 * "Portions Copyright [year] [name of copyright owner]"
55 * The session will be registered under the name specified in the
56 * <code>name</code> element. It may be defined to be in any valid
74 * JNDI name by which the mail session will be registered.
76 * @return the JNDI name
78 String name(); method in interface:MailSessionDefinition
81 * Store protocol name.
83 * @return the store protocol name
88 * Transport protocol name.
90 * @return the transport protocol name
[all...]
H A DHeader.java26 * "Portions Copyright [year] [name of copyright owner]"
45 * The Header class stores a name/value pair to represent headers.
53 * The name of the header.
57 protected String name; field in class:Header
69 * @param name name of the header
72 public Header(String name, String value) { argument
73 this.name = name;
78 * Returns the name o
[all...]
H A DQuota.java26 * "Portions Copyright [year] [name of copyright owner]"
46 * <code>Quota.Resource</code> class. Each resource has a name
62 /** The name of the resource. */
63 public String name; field in class:Quota.Resource
70 * Construct a Resource object with the given name,
73 * @param name the resource name
77 public Resource(String name, long usage, long limit) { argument
78 this.name = name;
110 setResourceLimit(String name, long limit) argument
[all...]
H A DUIDFolder.java26 * "Portions Copyright [year] [name of copyright owner]"
92 protected FetchProfileItem(String name) { argument
93 super(name);
/javamail/mbox/src/main/cpp/com/sun/mail/mbox/
H A DUNIXInbox.c26 * "Portions Copyright [year] [name of copyright owner]"
57 const char *name = (*env)->GetStringUTFChars(env, user, 0); local
58 ret = maillock((char *)name, retry_count) == L_SUCCESS ?
60 (*env)->ReleaseStringUTFChars(env, user, name);
/javamail/mbox/src/main/java/com/sun/mail/remote/
H A DRemoteDefaultFolder.java26 * "Portions Copyright [year] [name of copyright owner]"
53 protected RemoteDefaultFolder(RemoteStore store, String name) { argument
54 super(store, name);
58 * Depending on the name of the requested folder, create an
59 * appropriate <code>Folder</code> subclass. If the name is
61 * If the name is "INBOX" (ignoring case), create a
66 protected Folder createFolder(Store store, String name) { argument
67 if (name == null)
69 else if (name.equalsIgnoreCase("INBOX"))
70 return new RemoteInbox((RemoteStore)store, name);
[all...]
H A DRemoteInbox.java26 * "Portions Copyright [year] [name of copyright owner]"
58 protected RemoteInbox(RemoteStore store, String name) { argument
59 super(store, name);
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/
H A DFLAGS.java26 * "Portions Copyright [year] [name of copyright owner]"
54 // IMAP item name
55 static final char[] name = {'F','L','A','G','S'}; field in class:FLAGS
H A DMODSEQ.java26 * "Portions Copyright [year] [name of copyright owner]"
54 static final char[] name = {'M','O','D','S','E','Q'}; field in class:MODSEQ
H A DRFC822SIZE.java26 * "Portions Copyright [year] [name of copyright owner]"
53 static final char[] name = {'R','F','C','8','2','2','.','S','I','Z','E'}; field in class:RFC822SIZE
H A DUID.java26 * "Portions Copyright [year] [name of copyright owner]"
53 static final char[] name = {'U','I','D'}; field in class:UID
H A DListInfo.java26 * "Portions Copyright [year] [name of copyright owner]"
56 public String name = null; field in class:ListInfo
97 name = r.readAtomString();
99 // decode the name (using RFC2060's modified UTF7)
100 name = BASE64MailboxDecoder.decode(name);
H A DBODY.java26 * "Portions Copyright [year] [name of copyright owner]"
56 static final char[] name = {'B','O','D','Y'}; field in class:BODY
H A DFetchItem.java26 * "Portions Copyright [year] [name of copyright owner]"
50 * Note that the "name" field MUST be in uppercase. <p>
57 private String name; field in class:FetchItem
60 public FetchItem(String name, FetchProfile.Item fetchProfileItem) { argument
61 this.name = name;
66 return name;
75 * Note that the item name will have been parsed and skipped already.
H A DINTERNALDATE.java26 * "Portions Copyright [year] [name of copyright owner]"
63 static final char[] name = field in class:INTERNALDATE
H A DRFC822DATA.java26 * "Portions Copyright [year] [name of copyright owner]"
56 static final char[] name = {'R','F','C','8','2','2'}; field in class:RFC822DATA
/javamail/demo/src/main/java/internal/
H A DTtyAuthenticator.java15 * - Neither the name of Oracle nor the names of its
39 * A simple Authenticator that prompts for the user name and password on stdin.
86 String name, String value) {
89 p.print(name + ": ");
105 private static final String getpw(String name) { argument
109 (passwd = cons.readPassword("[%s] ", name)) != null)
85 get(BufferedReader in, String name, String value) argument
/javamail/demo/src/main/java/
H A Dnamespace.java15 * - Neither the name of Oracle nor the names of its
129 private static void printFolders(String name, Folder[] folders) argument
131 System.out.println(name + " Namespace:");
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DACL.java26 * "Portions Copyright [year] [name of copyright owner]"
56 private String name; field in class:ACL
62 * @param name the identifier name
64 public ACL(String name) { argument
65 this.name = name;
72 * @param name the identifier name
75 public ACL(String name, Right argument
[all...]
/javamail/mail/src/main/java/javax/mail/internet/
H A DContentDisposition.java26 * "Portions Copyright [year] [name of copyright owner]"
116 * @param name the parameter name
120 public String getParameter(String name) { argument
124 return list.get(name);
151 * @param name parameter name
155 public void setParameter(String name, String value) { argument
159 list.set(name, value);
190 // the header name formatte
[all...]
/javamail/mbox/src/main/java/com/sun/mail/mbox/
H A DUNIXFolder.java26 * "Portions Copyright [year] [name of copyright owner]"
50 public UNIXFolder(String name) { argument
51 super(name);
/javamail/android/activation/src/main/java/javax/activation/
H A DFileDataSource.java26 * "Portions Copyright [year] [name of copyright owner]"
91 * the specified path name. <i>Note:
95 * @param name the system-dependent file name.
97 public FileDataSource(String name) { argument
98 this(new File(name)); // use the file constructor
145 * Return the <i>name</i> of this object. The FileDataSource
146 * will return the file name of the object.
148 * @return the name of the object.
H A DSecuritySupport.java26 * "Portions Copyright [year] [name of copyright owner]"
71 final String name) throws IOException {
76 return c.getResourceAsStream(name);
84 public static URL[] getResources(final ClassLoader cl, final String name) { argument
91 Enumeration e = cl.getResources(name);
108 public static URL[] getSystemResources(final String name) { argument
115 Enumeration e = ClassLoader.getSystemResources(name);
70 getResourceAsStream(final Class c, final String name) argument
/javamail/mail/src/main/java/javax/mail/util/
H A DByteArrayDataSource.java26 * "Portions Copyright [year] [name of copyright owner]"
61 private String name = ""; field in class:ByteArrayDataSource
183 * Get the name of the data.
186 * @return the name of this data
189 return name;
193 * Set the name of the data.
195 * @param name the name of this data
197 public void setName(String name) { argument
198 this.name
[all...]

Completed in 20 milliseconds

1234