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

/javamail/client/src/main/java/
H A DTextViewer.java52 private String verb = null; field in class:TextViewer
74 public void setCommandContext(String verb, DataHandler dh) argument
77 this.verb = verb;
H A DMultipartViewer.java50 protected String verb = null; field in class:MultipartViewer
57 public void setCommandContext(String verb, DataHandler dh) throws IOException { argument
58 this.verb = verb;
H A DMessageViewer.java49 String verb = null; field in class:MessageViewer
197 public void setCommandContext(String verb, argument
199 this.verb = verb;
/javamail/android/activation/src/main/java/javax/activation/
H A DCommandObject.java47 * this interface to find out which command verb they're being asked
57 * Initialize the Command with the verb it is requested to handle
62 * @param verb The Command Verb this object refers to.
65 public void setCommandContext(String verb, DataHandler dh) argument
H A DCommandInfo.java49 * with both the verb requested, as well as an instance of the
61 private String verb; field in class:CommandInfo
66 * @param verb The command verb this CommandInfo decribes.
69 public CommandInfo(String verb, String className) { argument
70 this.verb = verb;
75 * Return the command verb.
77 * @return the command verb.
80 return verb;
[all...]
H A DMailcapCommandMap.java387 String verb = (String)verb_enum.next();
388 if (!checkForVerb(cmdList, verb)) {
389 List cmdList2 = (List)cmdHash.get(verb); // get the list
391 cmdList.add(new CommandInfo(verb, className));
398 * true if the verb is there.
400 private boolean checkForVerb(List cmdList, String verb) { argument
405 if (enum_verb.equals(verb))
453 String verb = (String)verb_enum.next();
454 List cmdList2 = (List)typeHash.get(verb);
459 cmdList.add(new CommandInfo(verb, cm
[all...]

Completed in 7 milliseconds