Searched refs:comment (Results 1 - 8 of 8) sorted by relevance

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DCookieConfigDescriptor.java54 private String comment = null; field in class:CookieConfigDescriptor
76 return comment;
79 public void setComment(String comment) { argument
80 this.comment = comment;
117 if (comment != null) {
118 toStringBuffer.append("\n cookie comment ").append(comment);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DSessionCookieConfigImpl.java60 private String comment; field in class:SessionCookieConfigImpl
160 * @param comment the cookie comment to use
166 public void setComment(String comment) { argument
170 "comment", ctx.getName()));
173 this.comment = comment;
178 * @return the cookie comment set via {@link #setComment}, or
182 return comment;
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/session/
H A DSessionCookieConfig.java109 * The comment that identifies the session tracking cookie in the
145 * @param comment The comment that identifies the session tracking cookie
149 String domain, String comment) {
155 setComment(comment);
218 * Set the comment that identifies the session cookie.
220 public void setComment(String comment) { argument
221 _comment = comment;
222 if (comment != null)
223 _comment = URLEncoder.encode(comment);
148 SessionCookieConfig(String name, String path, int maxAge, String domain, String comment) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/web/
H A DCookieConfig.java60 public void setComment(String comment); argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DMBeanInterfaceGenerator.java359 Return a comment regarding the Attribute name if it was mapped to a different
364 String comment = "";
368 comment = attributeName + " => " + javaName;
370 return comment;
392 String comment = "";
405 comment = getGetterComment(info, javaName);
406 if (comment.length() != 0)
408 buf.append(indent(comment) + NEWLINE);
419 comment = getSetterComment(info, javaName);
420 if (comment
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Dzip_util.c115 if (zip->comment != 0)
116 free(zip->comment);
164 * the file since that is the maximum comment length.
198 zip->comment = malloc(clen + 1);
199 if (zip->comment == 0)
201 if (readFully(zip->fd, zip->comment, clen) == -1)
203 free(zip->comment);
204 zip->comment = 0;
207 zip->comment[clen] = '\0';
278 addEntryComment(jzfile *zip, int index, char *comment) argument
462 char *comment = malloc(clen+1); local
[all...]
H A Dzip_util.h108 #define CENCOM(b) SH(b, 32) /* file comment length */
121 #define ENDCOM(b) SH(b, 20) /* size of zip file comment */
150 char *comment; /* optional zip file comment */ member in struct:jzentry
182 char *comment; /* zip file comment */ member in struct:jzfile
/glassfish-3.1.2/admin/util/src/main/java/org/glassfish/admin/cli/resources/
H A DResourcesXMLParser.java1593 public void comment(char[] ch, int start, int length) throws SAXException { method in class:ResourcesXMLParser.MyLexicalHandler

Completed in 22 milliseconds