parse static method

ManifestProp parse(
  1. XmlAttribute attr
)

Implementation

static ManifestProp parse(XmlAttribute attr) {
  ManifestProp prop = ManifestProp(attr.qualifiedName, attr.value);
  return prop;
}