Searched defs:verb (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DCommandObject.java32 * this interface to find out which command verb they're being asked
44 * Initialize the Command with the verb it is requested to handle
49 * @param verb The Command Verb this object refers to.
52 public void setCommandContext(String verb, DataHandler dh) argument
H A DCommandInfo.java34 * with both the verb requested, as well as an instance of the
48 private String verb; field in class:CommandInfo
53 * @param verb The command verb this CommandInfo decribes.
56 public CommandInfo(String verb, String className) { argument
57 this.verb = verb;
62 * Return the command verb.
64 * @return the command verb.
67 return verb;
[all...]
H A DMailcapCommandMap.java383 String verb = (String)verb_enum.next();
384 if (!checkForVerb(cmdList, verb)) {
385 List cmdList2 = (List)cmdHash.get(verb); // get the list
387 cmdList.add(new CommandInfo(verb, className));
394 * true if the verb is there.
396 private boolean checkForVerb(List cmdList, String verb) { argument
401 if (enum_verb.equals(verb))
449 String verb = (String)verb_enum.next();
450 List cmdList2 = (List)typeHash.get(verb);
455 cmdList.add(new CommandInfo(verb, cm
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/http/
H A DBinding.java43 public com.sun.xml.internal.ws.wsdl.writer.document.http.Binding verb(String value); method in interface:Binding
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDesktopPeer.java73 private void ShellExecute(File file, String verb) throws IOException { argument
74 String errMsg = ShellExecute(file.getAbsolutePath(), verb);
76 throw new IOException("Failed to " + verb + " " + file + ". Error message: " + errMsg);
80 private void ShellExecute(URI uri, String verb) throws IOException { argument
81 String errmsg = ShellExecute(uri.toString(), verb);
84 throw new IOException("Failed to " + verb + " " + uri
89 private static native String ShellExecute(String fileOrUri, String verb); argument

Completed in 29 milliseconds