Example usage for com.itextpdf.text.xml.xmp XmpArray ALTERNATIVE

List of usage examples for com.itextpdf.text.xml.xmp XmpArray ALTERNATIVE

Introduction

In this page you can find the example usage for com.itextpdf.text.xml.xmp XmpArray ALTERNATIVE.

Prototype

String ALTERNATIVE

To view the source code for com.itextpdf.text.xml.xmp XmpArray ALTERNATIVE.

Click Source Link

Document

An array with alternatives.

Usage

From source file:br.unifor.mia.xmpsemantico.xmp.MiaSchema.java

License:GNU General Public License

/**
 * Adds a description./*from  ww w .  j  av  a2 s  .co  m*/
 * @param description
 */
public void addDescription(String desc) {
    XmpArray array = new XmpArray(XmpArray.ALTERNATIVE);
    array.add(desc);
    setProperty(DESCRIPTION, array);
}