Searched defs:input (Results 1 - 25 of 37) sorted by relevance

12

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/
H A DInteraction.java51 * <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 DMiscUtil.java75 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 DObrXmlReaderWriter.java61 * 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 DRegexUtil.java97 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 DConstFieldRef.java72 static ConstFieldRef read (DataInputStream input) throws IOException { argument
73 int cname = input.readUnsignedShort();
74 int NT = input.readUnsignedShort();
H A DConstInterfaceMethodRef.java79 static ConstInterfaceMethodRef read (DataInputStream input) argument
81 int cname = input.readUnsignedShort();
82 int NT = input.readUnsignedShort();
H A DConstMethodRef.java79 static ConstMethodRef read (DataInputStream input) throws IOException { argument
80 int cname = input.readUnsignedShort();
81 int NT = input.readUnsignedShort();
H A DConstUnicode.java92 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 DConstUtf8.java86 static ConstUtf8 read (DataInputStream input) throws IOException { argument
87 return new ConstUtf8 (input.readUTF());
H A DConstClass.java114 static ConstClass read (DataInputStream input) throws IOException { argument
115 return new ConstClass (input.readUnsignedShort());
H A DConstDouble.java100 static ConstDouble read (DataInputStream input) throws IOException { argument
101 return new ConstDouble (input.readDouble());
H A DConstFloat.java95 static ConstFloat read (DataInputStream input) throws IOException { argument
96 return new ConstFloat (input.readFloat());
H A DConstInteger.java95 static ConstInteger read (DataInputStream input) throws IOException { argument
96 return new ConstInteger (input.readInt());
H A DConstLong.java95 static ConstLong read (DataInputStream input) throws IOException { argument
96 return new ConstLong (input.readLong());
H A DConstNameAndType.java120 static ConstNameAndType read (DataInputStream input) throws IOException { argument
121 int cname = input.readUnsignedShort();
122 int sig = input.readUnsignedShort();
H A DConstString.java110 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 DJarHandler.java168 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 DExpandWar.java104 * @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 DHostConfig.java986 * @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 DStringHelper.java291 * 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 DJarSigner.java128 * @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 DEarHandler.java512 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 DWarHandler.java273 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 DStandardClassLoader.java562 * @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 DRestTestBase.java267 public Document getDocument(String input) { argument
271 Document doc = db.parse(new ByteArrayInputStream(input.getBytes()));

Completed in 823 milliseconds

12