All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.legaldocml.akn.attribute.Src Maven / Gradle / Ivy

package io.legaldocml.akn.attribute;

import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.ManifestationURI;

/**
 * These attributes are used in manifestation-level references to specify external manifestation-level resources to be
 * loaded in place. The src attribute holds the manifestation-level IRI of the resource, while the alt attribute holds
 * the text to be displayed in case the loading of the external resource is not possible for any reason.
 *
 * ```xml
 * 
 *   
 *   
 * 
 * ```
 *
 * @author Jacques Militello
 */
public interface Src extends AknObject {

    ManifestationURI getSrc();

    void setSrc(ManifestationURI src);

    String getAlt();

    void setAlt(String alt);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy