com.adobe.epubcheck.ctc.epubpackage.SpineItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epubcheck Show documentation
Show all versions of epubcheck Show documentation
EPUBCheck is a tool to validate the conformance of EPUB publications against
the EPUB specifications. EPUBCheck can be run as a standalone command-line tool or used
as a Java library.
package com.adobe.epubcheck.ctc.epubpackage;
/**
* === WARNING ==========================================
* This class is scheduled to be refactored and integrated
* in another package.
* Please keep changes minimal (bug fixes only) until then.
* ========================================================
*/
public class SpineItem
{
private String idref;
private String id;
private String linear;
private String properties;
public String getIdref()
{
return idref;
}
public void setIdref(String idref)
{
this.idref = idref;
}
public String getId()
{
return id;
}
public void setId(String id)
{
this.id = id;
}
public String getLinear()
{
return linear;
}
public void setLinear(String linear)
{
this.linear = linear;
}
public String getProperties()
{
return properties;
}
public void setProperties(String properties)
{
this.properties = properties;
}
}