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

word.w2004.style.AbstractStyle Maven / Gradle / Ivy

The newest version!
package word.w2004.style;

import word.api.interfaces.IElement;
import word.api.interfaces.ISuperStylin;

public abstract class AbstractStyle implements ISuperStylin {

	private IElement element;
	
	public void setElement(IElement element) {
		this.element = element;
	}
	
	public IElement create() {
		return this.element;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy