Searched refs:CommandInfo (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DCommandMap.java97 * @return the CommandInfo classes that represent the command Beans.
99 abstract public CommandInfo[] getPreferredCommands(String mimeType);
113 * @return the CommandInfo classes that represent the command Beans.
116 public CommandInfo[] getPreferredCommands(String mimeType, DataSource ds) {
125 * @return the CommandInfo objects representing all the commands.
127 abstract public CommandInfo[] getAllCommands(String mimeType);
141 * @return the CommandInfo objects representing all the commands.
144 public CommandInfo[] getAllCommands(String mimeType, DataSource ds) {
153 * @return the CommandInfo corresponding to the command.
155 abstract public CommandInfo getComman
[all...]
H A DCommandInfo.java32 * The CommandInfo class is used by CommandMap implementations to
38 * implmentations that subclass CommandInfo to provide special
47 public class CommandInfo { class
52 * The Constructor for CommandInfo.
53 * @param verb The command verb this CommandInfo decribes.
56 public CommandInfo(String verb, String className) { method in class:CommandInfo
72 * cases where a CommandMap subclassed CommandInfo for its
H A DMailcapCommandMap.java346 * @return the CommandInfo objects representing the preferred commands.
348 public synchronized CommandInfo[] getPreferredCommands(String mimeType) {
370 CommandInfo[] cmdInfos = new CommandInfo[cmdList.size()];
371 cmdInfos = (CommandInfo[])cmdList.toArray(cmdInfos);
387 cmdList.add(new CommandInfo(verb, className));
400 (String)((CommandInfo)ee.next()).getCommandName();
412 * @return the CommandInfo objects representing all the commands.
414 public synchronized CommandInfo[] getAllCommands(String mimeType) {
436 CommandInfo[] cmdInfo
[all...]
H A DDataHandler.java465 * @return the CommandInfo objects representing the preferred commands
469 public CommandInfo[] getPreferredCommands() {
485 * @return the CommandInfo objects representing all the commands
489 public CommandInfo[] getAllCommands() {
504 * @return the CommandInfo corresponding to the command
508 public CommandInfo getCommand(String cmdName) {
541 * A convenience method that takes a CommandInfo object
545 * This method calls the CommandInfo's <code>getCommandObject</code>
549 * @param cmdinfo the CommandInfo corresponding to a command
552 public Object getBean(CommandInfo cmdinf
[all...]

Completed in 33 milliseconds