package jasi.simple.model; import jasi.sim.basic.element.Element; /** Object of the simple model. */ public interface SimpleObject extends Element { /** * Retrieve the content of this element. * * @return The content. */ String readContent(); /** * Empty the element's content. * * @return This simple element with empty content. */ SimpleObject emptyContent(); /** * Fill element with new content. * * @param content * The new content. * @return This simple element with new content. */ SimpleObject fillContent(String content); }