package inner_element_value_objects; import java.io.Serializable; /** * <p>Java class for article complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="article"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="author" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ public interface Article extends Serializable { /** * Gets the value of the title property. * * @return * possible object is * {@link String } * */ String getTitle(); /** * Sets the value of the title property. * * @param value * allowed object is * {@link String } * */ void setTitle(String value); /** * Gets the value of the author property. * * @return * possible object is * {@link String } * */ String getAuthor(); /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ void setAuthor(String value); }