Searched defs:quote (Results 1 - 9 of 9) sorted by relevance

/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/common/
H A DJsonActionReporter.java85 writer.println(quote(", number_subactions") + ":" + quote("" + subActions.size()));
91 writer.println("{ " + quote("name") + ":" + quote(part.getMessage()));
93 writer.println(", " + quote("command") + ":" + quote(actionDescription));
94 writer.println(", " + quote("exit_code") + ":" + quote("" + this.exitCode));
101 writer.println(", " + quote("result") + " : [");
123 String result = "," + quote("propertie
185 private String quote(String string) { method in class:JsonActionReporter
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DStrftime.java237 //We start a literal, which we need to quote
257 protected String quote( String str, boolean insideQuotes ) { method in class:Strftime
272 * @param oldInside whether to close the quotes if inside quote
285 buf.append( quote("%" + firstChar, oldInside ) );
292 buf.append( quote( "%" + firstChar, oldInside ) );
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/commands/
H A DThreadMonitor.java118 msg = sm.getString("thread.title", quote(ti.getThreadName()), ids, ss);
188 private String quote(final String uq) { method in class:ThreadMonitor
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/
H A DJMXTestBase.java251 quote(final Object o) { method in class:JMXTestBase
252 return (StringUtil.quote(SmartStringifier.toString(o)));
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/
H A DProviderUtil.java90 public static String quote(String string) { method in class:ProviderUtil
379 result = " " + quote(name) + ":" + jsonValue(value);
384 result = result + " " + name + "=" + quote(value);
395 result = quote(value.toString());
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DStringUtil.java74 public static String quote(Object o) method in class:StringUtil
76 return (quote(o, QUOTE_CHAR));
79 public static String quote(Object o, char leftHandChar) method in class:StringUtil
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DCLICommand.java492 sb.append(" ").append(quote(value));
498 sb.append(quote(o)).append(' ');
502 sb.append(quote(arg)).append(' ');
515 public static String quote(String value) { method in class:CLICommand
522 * quote the entire string if necessary.
528 // need to escape them and then quote the whole string
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/
H A DMBeanImplBase.java324 protected static String quote(final Object o) { method in class:MBeanImplBase
325 return (StringUtil.quote("" + o));
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/
H A DCLIBootstrap.java213 * containing no double quote) or a non-quoted string (a string containing
322 * Places double quote marks around a string if the string is not already
327 private static String quote(final String s) { method in class:CLIBootstrap
346 return (OS.isWindows() ? quote(s) : quote(s.replace("$", "\\$")));
359 add("appcpath=" + quote(appcPath));
699 agentArgs.addACCArg(quote(newOptionValue.value));
782 agentArgs.add("client=dir=" + quote(clientSpec.getAbsolutePath()));
786 agentArgs.add("client=jar=" + quote(path));
929 command.append(' ').append(INSTALL_ROOT_PROPERTY_EXPR).append(quote(gfInf
[all...]

Completed in 568 milliseconds