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

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

The newest version!
package io.legaldocml.akn.attribute;

import io.legaldocml.akn.AknObject;

/**
 * These attributes are used to specify class, style and title of the element, exactly as in HTML<
 *
 * ```xml
 * 
 *   
 * 	 
 * 	 
 * 
 * ```
 *
 * @author Jacques Militello
 */
public interface HTMLattrs extends AknObject {

    String getClazz();

    void setClazz(String clazz);

    String getStyle();

    void setStyle(String style);

    String getTitle();

    void setTitle(String title);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy