/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/gadget/ |
H A D | GadgetModulePrefs.java | 79 return this.title; 83 * <p> Setter for the title.</p> 85 @Attribute(value="title", required=false) 86 void setTitle(String title) { argument 87 this.title = title; 90 private String title; field in class:GadgetModulePrefs
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/ |
H A D | ProfilerImpl.java | 138 title = desc; 142 if (title.length() > longestTitle) { 143 longestTitle = title.length(); 166 String desc = StringUtils.padRight(title, longestTitle + 1); 179 String title; field in class:ProfilerImpl.Item
|
H A D | Print.java | 445 ** @param the title of the stack trace. 449 private static void _printStackTrace(PrintStream out, int frame, String title, String msg, Throwable excp) argument 455 final String _ttl = " " + title + " "; 497 ** @param the title of the stack trace. 501 public static void printStackTrace(PrintStream out, int frame, String title, String msg, Throwable excp) argument 521 _printStackTrace(out, frame + 1, title, msg, excp); 528 ** @param the title of the stack trace. 532 public static void dprintStackTrace(PrintStream out, int frame, String title, String msg, Throwable excp) argument 540 _printStackTrace(out, frame + 1, title, msg, excp); 545 ** @param the title o 549 printStackTrace(String title, String msg, Throwable excp) argument 560 dprintStackTrace(String title, String msg, Throwable excp) argument [all...] |
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | setup.h | 180 static char *title = NULL; variable 183 * Returns the title to use on status windows. 188 if (!title) 189 title = GetLocalizedMessage(MESSAGE_KEY_PREFIX "_title"); 190 return title;
|
H A D | uninstall.h | 191 static char *title = NULL; variable 194 * Returns the title to use on status windows. 199 if (!title) 200 title = GetLocalizedMessage(MESSAGE_KEY_PREFIX "_title"); 201 return title;
|
H A D | java_md.unix.c | 120 const char *title = GetTitle(); local 122 lockfile = (char *)MemAlloc(strlen(tmpdir) + strlen(title) + 45); 123 sprintf(lockfile, "%s" FILE_SEPARATOR "%s.%lu.%llu.%lu", tmpdir, title, (unsigned long)sb.st_dev, (unsigned long long)sb.st_ino, (unsigned long)geteuid()); 796 char *title = NULL; local
|
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbqlc/ |
H A D | EJBQLAST.java | 191 * The returned string starts with the specified title string, 199 public String getTreeRepr(String title) argument 201 return title + this.getTreeRepr(0);
|
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/ |
H A D | GUILoginDialog.java | 151 * Create a dialog box with a frame and title. 154 * @param title The dialog box title. 156 protected PassphraseDialog (JFrame frame, String title) { argument 157 super(frame, title, true); 164 * Create a dialog box with a frame and title. 167 * @param title The dialog box title. 170 String title, 173 super(frame, title, tru 169 PassphraseDialog(JFrame frame, String title, Callback[] callbacks) argument 429 CertificateDialog(JFrame frame, String title) argument [all...] |
/glassfish-3.1.2/common/common-util/src/test/java/org/glassfish/admin/payload/ |
H A D | PayloadFilesManagerTest.java | 747 private static void listDir(final String title, final File dir) { argument 748 ////System.out.println(title);
|
/glassfish-3.1.2/deployment/autodeploy/src/main/java/org/glassfish/deployment/autodeploy/ |
H A D | AutoDeployService.java | 178 private void logConfig(String title, argument 183 logger.fine("[AutoDeploy] " + title + ", enabled=" + isEnabled +
|
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/jqlc/ |
H A D | JQLAST.java | 241 * The returned string starts with the specified title string, 249 public String getTreeRepr(String title) argument 251 return title + this.getTreeRepr(0);
|
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/ |
H A D | JMXUtil.java | 1808 private static String title(final MBeanFeatureInfo info) method in class:JMXUtil 1867 buf.append(idt(indent) + title(info) + NL); 1898 buf.append(idt(indent) + title(info) + NL);
|
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/ |
H A D | prototype.js | 1516 title: function(element) { 1517 var node = element.getAttributeNode('title');
|