Searched defs:contents (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DMessages_en_US.java6 * The contents of this file are subject to the terms of either the GNU
86 * Return the contents of the bundle.
88 protected Object[][] getContents() { return contents; }
93 private static final Object[][] contents = { field in class:Messages_en_US
H A DMessages.java6 * The contents of this file are subject to the terms of either the GNU
417 * Return the contents of the ResourceBundle.
419 protected Object[][] getContents() { return contents; }
425 Object[][] contents = getContents();
426 if (messageNum > contents.length) {
429 } else if (!(contents[messageNum][1] instanceof String)) {
434 return MessageFormat.format((String) contents[messageNum][1], inserts);
442 Object[][] contents = getContents();
444 if (messageNum > contents.length) {
448 return contents[messageNu
471 private static final Object[][] contents = { field in class:Messages
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/naming/
H A DSerializableObjectRefAddr.java6 * The contents of this file are subject to the terms of either the GNU
56 * Contains the contents of this address.
60 private Object contents; field in class:SerializableObjectRefAddr
63 * using its address type and contents.
66 * @param contents The possibly null contents of the address in the
69 public SerializableObjectRefAddr (String addrType, Object contents) { argument
71 this.contents = contents;
75 * Retrieves the contents o
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DMBeanInterfaceGenerator.java6 * The contents of this file are subject to the terms of either the GNU
284 protected String indent(String contents, String prefix) argument
287 if (contents.length() != 0)
289 final String[] lines = contents.split(NEWLINE);
305 protected String indent(String contents) argument
307 return (indent(contents, INDENT));
310 protected String makeJavadocComment(String contents) argument
312 if (contents == null || contents.length() == 0)
316 return ("/**" + NEWLINE + indent(contents)
[all...]

Completed in 617 milliseconds