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

org.docx4j.wml.SdtContent Maven / Gradle / Ivy

There is a newer version: 11.5.0
Show newest version
package org.docx4j.wml;

import java.util.List;

/**
 * Content controls (Sdt) contain properties (SdtPr) and content (SdtContent).
 * 
 * In JAXB, there are different Java objects for the content controls, depending on whether they
 * wrap block-level, row-level, cell-level, or run-level content.  Those objects all implement interface SdtElement.
 *  
 * Similarly, there are different Java objects for the SdtContent, depending on whether they
 * wrap block-level, row-level, cell-level, or run-level content.  Those objects all extend this SdtContent class.
 * 
 * @author jharrop
 * @since 3.3.4
 */
public abstract class SdtContent implements ContentAccessor {
	
	public abstract List getContent();

}