Class ManifestHeaderValue

java.lang.Object
org.apache.ivy.osgi.core.ManifestHeaderValue

public class ManifestHeaderValue extends Object
Parse a header of a manifest. The manifest header is composed with the following rules:
header ::= header-element (',' header-element)*
header-element ::= values (';' (attribute | directive) )*
values ::= value (';' value)*
value ::= <any string value that does not have ';' or ','>
attribute ::= key '=' value
directive ::= key '=' value
key ::= token
value ::= token | quoted-string | double-quoted-string