|
java.lang.Object | +--MediaType
This class is used to represent the different media that is used within the system (for example, pictures, audio, CPU processing, etc).
Plugins cannot create or edit MediaTypes themselves, this is done externally by registering with the administrator of the system.
| Method Summary | |
java.lang.String |
GetDescription()
|
javax.swing.ImageIcon |
GetIcon()
|
int |
GetID()
|
java.lang.String |
GetName()
|
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
public java.lang.String GetName()
This method returns the name of the MediaType.
public java.lang.String GetDescription()
This method returns a brief description of the MediaType
public int GetID()
This method returns the ID number used to identify the MediaType within the network
public javax.swing.ImageIcon GetIcon()
This method return the icon that is used to represent the MediaType within the network
|