MIDletVendor
In the Java ME platform, MIDlet-Vendor (often referred to by the shorthand MIDletVendor) is a metadata attribute used in a MIDlet suite’s application descriptor. It specifies the vendor or publisher of the MIDlet suite and is part of the standard set of MIDP manifest attributes, alongside MIDlet-Name and MIDlet-Version. The attribute is optional and intended for informational and organizational purposes rather than for programmatic control.
The value of the MIDlet-Vendor attribute is placed in the JAR manifest (META-INF/MANIFEST.MF) as a line such
Usage considerations include that the field is purely metadata. It does not affect the execution of the
Example: MIDlet-Vendor: Acme Mobile Ltd.
See also: MIDlet, MIDlet-Name, MIDlet-Version, JAR manifest, Java ME/MIDP.