io.legaldocml.akn.attribute.Quote Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* The attributes startQuote and endQuote are used in quotedText, quotedStructure, embeddedText and embeddedStructure to
* specify the start and quote character delimiting the quoted or embedded part. If the characters are the same, one can
* use only startQuote. Attribute inlineQuote is used for marking the character showing continuation of a quote e.g. at
* the beginning of each page or at the beginning of each line of the quote
*
* ```xml
*
*
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Quote extends AknObject {
String getStartQuote();
void setStartQuote(String startQuote);
String getEndQuote();
void setEndQuote(String endQuote);
String getInlineQuote();
void setInlineQuote(String inlineQuote);
}