/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/ |
H A D | Interaction.java | 51 * <LI><code>execute</code> method that takes an input Record, output 55 * <LI><code>execute</code> method that takes an input Record and an 97 * This form of invocation takes an input Record and updates 102 * @param input Input Record 116 * input or output record structure 117 * <LI> Errors in use of input or output Record 126 Record input, 130 * This form of invocation takes an input Record and returns an 136 * @param input Input Record 148 * or input recor 125 execute(InteractionSpec ispec, Record input, Record output) argument 157 execute(InteractionSpec ispec, Record input) argument [all...] |
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/ |
H A D | MiscUtil.java | 75 public static Document getDocument(String input) { argument 79 Document doc = db.parse(new ByteArrayInputStream(input.getBytes())); 82 GuiUtil.prepareAlert("error", ex.getMessage() + ": " + input, null);
|
/glassfish-3.1.2/build/glassfish-obr-builder/src/main/java/org/glassfish/obrbuilder/xmlentities/ |
H A D | ObrXmlReaderWriter.java | 61 * Reads the XML document from the input stream and maps it to a Java object graph. 83 public Repository read(URI input) throws IOException { argument 84 InputStream is = new BufferedInputStream(input.toURL().openStream()); 99 public Repository read(File input) throws IOException { argument 100 return read(input.toURI());
|
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/ |
H A D | RegexUtil.java | 97 public static String wildcardToJavaRegex(String input) argument 99 String converted = input; 101 if (input != null) 103 final int length = input.length(); 108 final char theChar = input.charAt(i);
|
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
H A D | ConstFieldRef.java | 72 static ConstFieldRef read (DataInputStream input) throws IOException { argument 73 int cname = input.readUnsignedShort(); 74 int NT = input.readUnsignedShort();
|
H A D | ConstInterfaceMethodRef.java | 79 static ConstInterfaceMethodRef read (DataInputStream input) argument 81 int cname = input.readUnsignedShort(); 82 int NT = input.readUnsignedShort();
|
H A D | ConstMethodRef.java | 79 static ConstMethodRef read (DataInputStream input) throws IOException { argument 80 int cname = input.readUnsignedShort(); 81 int NT = input.readUnsignedShort();
|
H A D | ConstUnicode.java | 92 static ConstUnicode read (DataInputStream input) throws IOException { argument 93 int count = input.readShort(); // Is this chars or bytes? 96 b.append(input.readChar());
|
H A D | ConstUtf8.java | 86 static ConstUtf8 read (DataInputStream input) throws IOException { argument 87 return new ConstUtf8 (input.readUTF());
|
H A D | ConstClass.java | 114 static ConstClass read (DataInputStream input) throws IOException { argument 115 return new ConstClass (input.readUnsignedShort());
|
H A D | ConstDouble.java | 100 static ConstDouble read (DataInputStream input) throws IOException { argument 101 return new ConstDouble (input.readDouble());
|
H A D | ConstFloat.java | 95 static ConstFloat read (DataInputStream input) throws IOException { argument 96 return new ConstFloat (input.readFloat());
|
H A D | ConstInteger.java | 95 static ConstInteger read (DataInputStream input) throws IOException { argument 96 return new ConstInteger (input.readInt());
|
H A D | ConstLong.java | 95 static ConstLong read (DataInputStream input) throws IOException { argument 96 return new ConstLong (input.readLong());
|
H A D | ConstNameAndType.java | 120 static ConstNameAndType read (DataInputStream input) throws IOException { argument 121 int cname = input.readUnsignedShort(); 122 int sig = input.readUnsignedShort();
|
H A D | ConstString.java | 110 static ConstString read (DataInputStream input) throws IOException { argument 111 return new ConstString (input.readUnsignedShort());
|
/glassfish-3.1.2/deployment/common/src/main/java/com/sun/enterprise/deploy/jar/ |
H A D | JarHandler.java | 168 InputStream input = null; 171 input = new FileInputStream(f); 173 read(input); 182 if (input != null) { 184 input.close(); 195 InputStream input = null; 202 input = archive.getEntry( "META-INF/glassfish-application-client.xml" ); 203 if (input == null) { 205 input = archive.getEntry( "META-INF/glassfish-ejb-jar.xml" ); 208 if (input ! 241 read(InputStream input) argument 320 read(InputStream input) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/ |
H A D | ExpandWar.java | 104 * @exception IOException if an input/output error was encountered 139 * @exception IOException if an input/output error was encountered 173 InputStream input = null; 198 input = jarFile.getInputStream(jarEntry); 199 expand(input, expandedFile); 204 input.close(); 205 input = null; 216 if (input != null) { 218 input.close(); 222 input 461 expand(InputStream input, File docBase, String name) argument 476 expand(InputStream input, File file) argument [all...] |
H A D | HostConfig.java | 986 * @exception IOException if an input/output error was encountered 996 * Expand the specified input stream into the specified directory, creating 999 * @param input InputStream to be copied 1003 * @exception IOException if an input/output error occurs 1005 protected void expand(InputStream input, File docBase, String name) argument 1008 ExpandWar.expand(input,docBase,name);
|
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/ |
H A D | StringHelper.java | 291 * Trims trailing spaces from input. 292 * @param input The input string. 294 * trailing spaces, returns <CODE>input</CODE>. 296 public static String rtrim (String input) argument 298 String retVal = input; 300 if (input != null) 302 int lastCharIndex = input.length() - 1; 306 Character.isSpaceChar(input.charAt(lastCharIndex))) 313 retVal = input [all...] |
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/ssl/ |
H A D | JarSigner.java | 128 * @param input input jar file 132 public void signJar(File input, File output, String alias) argument 136 JarFile jf = new JarFile(input);
|
/glassfish-3.1.2/deployment/javaee-full/src/main/java/org/glassfish/javaee/full/deployment/ |
H A D | EarHandler.java | 512 InputStream input = null; 515 input = new FileInputStream(f); 517 read(input); 526 if (input != null) { 528 input.close(); 539 InputStream input = null; 544 input = archive.getEntry("META-INF/glassfish-application.xml"); 546 if (input != null) { 549 parser = getXMLInputFactory().createXMLStreamReader(input); 567 if (input ! 579 read(InputStream input) argument 658 read(InputStream input) argument [all...] |
/glassfish-3.1.2/web/war-util/src/main/java/com/sun/enterprise/glassfish/web/ |
H A D | WarHandler.java | 273 InputStream input = null; 276 input = new FileInputStream(f); 278 read(input); 287 if (input != null) { 289 input.close(); 301 * This method will parse the input stream and set the XMLStreamReader 304 * @param input InputStream 307 protected abstract void read(InputStream input) throws XMLStreamException; argument 375 protected void read(InputStream input) throws XMLStreamException { argument 376 parser = getXMLInputFactory().createXMLStreamReader(input); 532 read(InputStream input) argument [all...] |
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/loader/ |
H A D | StandardClassLoader.java | 562 * @exception IOException if an input/output error occurs 648 * Find the resource with the given name, and return an input stream 654 * @param name Name of the resource to return an input stream for 994 * @param input The array of String to be converted 996 protected static URL[] convert(String input[]) { argument 997 return convert(input, null); 1004 * @param input The array of String to be converted 1007 protected static URL[] convert(String input[], argument 1012 URL url[] = new URL[input.length]; 1015 String protocol = parseProtocol(input[ [all...] |
/glassfish-3.1.2/admin/rest/src/test/java/org/glassfish/admin/rest/ |
H A D | RestTestBase.java | 267 public Document getDocument(String input) { argument 271 Document doc = db.parse(new ByteArrayInputStream(input.getBytes()));
|