java.lang.Object | +--javax.activation.CommandMap
The CommandMap class provides an interface to a registry of command objects available in the system. Developers are expected to either use the CommandMap implementation included with this package (MailcapCommandMap) or develop their own. Note that some of the methods in this class are abstract.
abstract DataContentHandler
createDataContentHandler(java.lang.String mimeType)
abstract CommandInfo[]
getAllCommands(java.lang.String mimeType)
abstract CommandInfo
getCommand(java.lang.String mimeType,
java.lang.String cmdName)
abstract CommandInfo[]
getPreferredCommands(java.lang.String mimeType)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public CommandMap()
public static CommandMap getDefaultCommandMap()
MailcapCommandMap
and
set that to the default, returning its value.
public static void setDefaultCommandMap(CommandMap commandMap)
null
.commandMap
- The new default CommandMap.java.lang.SecurityException
- if the caller doesn't have permission
to change the defaultpublic abstract CommandInfo[] getPreferredCommands(java.lang.String mimeType)
mimeType
- the MIME typepublic abstract CommandInfo[] getAllCommands(java.lang.String mimeType)
mimeType
- the MIME typepublic abstract CommandInfo getCommand(java.lang.String mimeType, java.lang.String cmdName)
mimeType
- the MIME typecmdName
- the command namepublic abstract DataContentHandler createDataContentHandler(java.lang.String mimeType)
mimeType
- the MIME type