Searched defs:parse (Results 1 - 21 of 21) sorted by relevance

/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DNameParserImpl.java86 * @param name The non-null string name to parse
90 public Name parse(String name) method in class:NameParserImpl
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DSerialNameParser.java62 * @param name The non-null string name to parse.
67 public Name parse(String name) throws NamingException { method in class:SerialNameParser
/glassfish-3.1.2/extras/upgrade/upgrade-jar/src/main/java/com/sun/enterprise/tools/upgrade/common/
H A DArgsParser.java73 public ArrayList<ArgumentHandler> parse(String [] args){ method in class:ArgsParser
H A DGUICmdLineInput.java54 public ArrayList<ArgumentHandler> parse(String[] args) { method in class:GUICmdLineInput
56 ArrayList<ArgumentHandler> aList = ap.parse(args);
/glassfish-3.1.2/extras/grizzly-container/src/main/java/org/glassfish/extras/grizzly/
H A DGrizzlyModuleDescriptor.java70 parse(factory.newDocumentBuilder().parse(source.getEntry(DescriptorPath)));
83 private void parse(Document document) { method in class:GrizzlyModuleDescriptor
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/realm/
H A DGroupMapper.java56 public void parse(String mappingStr) { method in class:GroupMapper
134 mapper.parse(mappingStr);
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/
H A DCommandXMLResultParser.java58 static DFDeploymentStatus parse(InputStream is) throws ParserConfigurationException, SAXException, IOException { method in class:CommandXMLResultParser
66 parser.parse(is, rh);
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/schemadoc/
H A DGenerateDomainSchema.java125 ClassDef def = parse(jf.getInputStream(entry));
150 private ClassDef parse(InputStream is) throws IOException { method in class:GenerateDomainSchema
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DXmlInputObject.java89 parse(xmlReader, this, null);
108 private static boolean parse(XmlInputReader reader, XmlInputObject context, method in class:XmlInputObject
229 if (parse(reader, subContext, n)) {
/glassfish-3.1.2/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/util/
H A DDomainXmlSAXParser.java62 public void parse(java.io.File domainXml,java.io.File dtd) throws javax.xml.parsers.ParserConfigurationException,org.xml.sax.SAXException,java.io.IOException { method in class:DomainXmlSAXParser
68 saxParser.parse(domainXml,this);
/glassfish-3.1.2/appclient/client/acc-config/src/main/java/org/glassfish/appclient/client/acc/config/util/
H A DXML.java120 public static Password parse(String s) { method in class:XML.Password
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/jqlc/
H A DJDOQLParameterDeclarationParser.java71 * @exception JDOQueryException indicates a parse error
75 return new ParameterTypeIterator(parse(text));
83 private AST parse(String text) method in class:JDOQLParameterDeclarationParser
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/fileupload/
H A DParameterParser.java67 * A simple parser intended to parse sequences of name/value pairs.
118 * Are there any characters left to parse?
271 public Map<String, String> parse(final String str, char[] separators) { method in class:ParameterParser
288 return parse(str, separator);
300 public Map<String, String> parse(final String str, char separator) { method in class:ParameterParser
304 return parse(str.toCharArray(), separator);
317 public Map<String, String> parse(final char[] chars, char separator) { method in class:ParameterParser
321 return parse(chars, 0, chars.length, separator);
336 public Map<String, String> parse( method in class:ParameterParser
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DInstanceStateFileProcessor.java71 parse();
74 private void parse() throws IOException { method in class:InstanceStateFileProcessor
79 this.xmlDoc = builder.parse(stateFile);
82 throw new IOException("Unable to parse instance state file", se);
84 throw new IOException("Unable to parse instance state file", pce);
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/
H A DXPathToDeveloperProvidedContentRefs.java115 static List<XPathToDeveloperProvidedContentRefs> parse(final Properties p) { method in class:XPathToDeveloperProvidedContentRefs
118 parse(p, XPathToDeveloperProvidedContentRefs.Type.STATIC));
120 parse(p, XPathToDeveloperProvidedContentRefs.Type.DYNAMIC));
132 private static List<XPathToDeveloperProvidedContentRefs> parse(final Properties p, Type type) { method in class:XPathToDeveloperProvidedContentRefs
H A DCombinedXPath.java142 static List<CombinedXPath> parse(final Properties p) { method in class:CombinedXPath
144 // result.addAll(CombinedXPath.parse(p, CombinedXPath.Type.OWNED));
145 result.addAll(CombinedXPath.parse(p, CombinedXPath.Type.DEFAULTED));
146 result.addAll(CombinedXPath.parse(p, CombinedXPath.Type.MERGED));
152 * from the config properties and then parse it into the separate
159 private static List<CombinedXPath> parse( method in class:CombinedXPath
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DDomainXmlPreParser.java70 * ALWAYS parse twice. The first time through should be VERY fast because we are skipping
72 * for the final parse.
98 parse();
139 private void parse() throws XMLStreamException { method in class:DomainXmlPreParser
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/core/
H A DPathnameParser.java159 mParts = parse();
254 private void parse(final String path, final List<PathPart> parts) method in class:PathnameParser
333 private List<PathPart> parse() method in class:PathnameParser
337 parse(mPath, parts);
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DCLICommand.java74 * following protected methods in order: prepare, parse, validate,
78 * command. The parse and validate method may also be overridden if
147 * Initialized by the parse method. The keys
156 * Initialized by the parse method.
230 * Then it calls the prepare, parse, and validate methods, finally
246 parse();
560 * If the program options haven't already been set, parse them
671 * The parse method sets the options and operands fields
680 protected void parse() throws CommandException { method in class:CLICommand
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/
H A DModel.java1677 public boolean parse (String className) method in class:Model
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/
H A DDigester.java93 * to <code>parse()</code> must be completed before another can be initiated
276 * The SAXParser we will use to parse the input stream.
289 * The XMLReader used to parse digester rules.
665 * Set the publid id of the current file being parse.
711 * Return the SAXParser we will use to parse the input stream. If there
918 * <code>parse()</code> is called the first time.
941 * <code>parse()</code> is called the first time.
1320 // rather than via the parse() methods.
1474 * This must be called before the first call to <code>parse()</code>.
1594 * Forward notification of a parse warnin
1651 public Object parse(File file) throws IOException, SAXException { method in class:Digester
1669 public Object parse(InputSource input) throws IOException, SAXException { method in class:Digester
1685 public Object parse(InputStream input) throws IOException, SAXException { method in class:Digester
1702 public Object parse(Reader reader) throws IOException, SAXException { method in class:Digester
1721 public Object parse(String uri) throws IOException, SAXException { method in class:Digester
[all...]

Completed in 516 milliseconds