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

word.api.interfaces.ISuperStylin Maven / Gradle / Ivy

The newest version!
package word.api.interfaces;

/**
 * @author no one
 *
 */
public interface ISuperStylin {

	/**
	 *	This method will called by IElement.getContent();
	 */
	public String getNewContentWithStyle(String txt);
	
	/**
	 * 
	 *
	 */
	public void setElement(IElement element);
	
	/**
	 * This method returns the element. There should be a cast for the return. 
	 * The other option to avoid type cast is use covariant type return
	 *
	 */
	public IElement create();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy