net.sf.buildbox.changes.bean.VersionNotesBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of releasator Show documentation
Show all versions of releasator Show documentation
Commandline utility for creating reproducible releases. Minimal parametrization, isolated sandbox for releases. Currently built on top of maven-release-plugin.
The newest version!
/*
* XML Type: VersionNotes
* Namespace: http://buildbox.sf.net/changes/2.0
* Java type: net.sf.buildbox.changes.bean.VersionNotesBean
*
* Automatically generated - do not modify.
*/
package net.sf.buildbox.changes.bean;
/**
* An XML VersionNotes(@http://buildbox.sf.net/changes/2.0).
*
* This is a complex type.
*/
public interface VersionNotesBean extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(VersionNotesBean.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s26F5FA9844D0928D009A0DF45ED2B1EE").resolveHandle("versionnotes79e8type");
/**
* Gets array of all "item" elements
*/
net.sf.buildbox.changes.bean.ItemBean[] getItemArray();
/**
* Gets ith "item" element
*/
net.sf.buildbox.changes.bean.ItemBean getItemArray(int i);
/**
* Returns number of "item" element
*/
int sizeOfItemArray();
/**
* Sets array of all "item" element
*/
void setItemArray(net.sf.buildbox.changes.bean.ItemBean[] itemArray);
/**
* Sets ith "item" element
*/
void setItemArray(int i, net.sf.buildbox.changes.bean.ItemBean item);
/**
* Inserts and returns a new empty value (as xml) as the ith "item" element
*/
net.sf.buildbox.changes.bean.ItemBean insertNewItem(int i);
/**
* Appends and returns a new empty value (as xml) as the last "item" element
*/
net.sf.buildbox.changes.bean.ItemBean addNewItem();
/**
* Removes the ith "item" element
*/
void removeItem(int i);
/**
* Gets array of all "upgrade" elements
*/
net.sf.buildbox.changes.bean.UpgradeProcedureBean[] getUpgradeArray();
/**
* Gets ith "upgrade" element
*/
net.sf.buildbox.changes.bean.UpgradeProcedureBean getUpgradeArray(int i);
/**
* Returns number of "upgrade" element
*/
int sizeOfUpgradeArray();
/**
* Sets array of all "upgrade" element
*/
void setUpgradeArray(net.sf.buildbox.changes.bean.UpgradeProcedureBean[] upgradeArray);
/**
* Sets ith "upgrade" element
*/
void setUpgradeArray(int i, net.sf.buildbox.changes.bean.UpgradeProcedureBean upgrade);
/**
* Inserts and returns a new empty value (as xml) as the ith "upgrade" element
*/
net.sf.buildbox.changes.bean.UpgradeProcedureBean insertNewUpgrade(int i);
/**
* Appends and returns a new empty value (as xml) as the last "upgrade" element
*/
net.sf.buildbox.changes.bean.UpgradeProcedureBean addNewUpgrade();
/**
* Removes the ith "upgrade" element
*/
void removeUpgrade(int i);
/**
* Gets the "codename" attribute
*/
java.lang.String getCodename();
/**
* Gets (as xml) the "codename" attribute
*/
net.sf.buildbox.changes.bean.VersionNotesBean.Codename xgetCodename();
/**
* True if has "codename" attribute
*/
boolean isSetCodename();
/**
* Sets the "codename" attribute
*/
void setCodename(java.lang.String codename);
/**
* Sets (as xml) the "codename" attribute
*/
void xsetCodename(net.sf.buildbox.changes.bean.VersionNotesBean.Codename codename);
/**
* Unsets the "codename" attribute
*/
void unsetCodename();
/**
* Gets the "groupId" attribute
*/
java.lang.String getGroupId();
/**
* Gets (as xml) the "groupId" attribute
*/
net.sf.buildbox.changes.bean.VersionNotesBean.GroupId xgetGroupId();
/**
* Sets the "groupId" attribute
*/
void setGroupId(java.lang.String groupId);
/**
* Sets (as xml) the "groupId" attribute
*/
void xsetGroupId(net.sf.buildbox.changes.bean.VersionNotesBean.GroupId groupId);
/**
* Gets the "artifactId" attribute
*/
java.lang.String getArtifactId();
/**
* Gets (as xml) the "artifactId" attribute
*/
net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId xgetArtifactId();
/**
* Sets the "artifactId" attribute
*/
void setArtifactId(java.lang.String artifactId);
/**
* Sets (as xml) the "artifactId" attribute
*/
void xsetArtifactId(net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId artifactId);
/**
* Gets the "version" attribute
*/
java.lang.String getVersion();
/**
* Gets (as xml) the "version" attribute
*/
net.sf.buildbox.changes.bean.VersionNotesBean.Version xgetVersion();
/**
* Sets the "version" attribute
*/
void setVersion(java.lang.String version);
/**
* Sets (as xml) the "version" attribute
*/
void xsetVersion(net.sf.buildbox.changes.bean.VersionNotesBean.Version version);
/**
* An XML codename(@).
*
* This is an atomic type that is a restriction of net.sf.buildbox.changes.bean.VersionNotesBean$Codename.
*/
public interface Codename extends org.apache.xmlbeans.XmlToken
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Codename.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s26F5FA9844D0928D009A0DF45ED2B1EE").resolveHandle("codename5a00attrtype");
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.sf.buildbox.changes.bean.VersionNotesBean.Codename newValue(java.lang.Object obj) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.Codename) type.newValue( obj ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.Codename newInstance() {
return (net.sf.buildbox.changes.bean.VersionNotesBean.Codename) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.Codename newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.Codename) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* An XML groupId(@).
*
* This is an atomic type that is a restriction of net.sf.buildbox.changes.bean.VersionNotesBean$GroupId.
*/
public interface GroupId extends org.apache.xmlbeans.XmlString
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(GroupId.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s26F5FA9844D0928D009A0DF45ED2B1EE").resolveHandle("groupid19caattrtype");
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.sf.buildbox.changes.bean.VersionNotesBean.GroupId newValue(java.lang.Object obj) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.GroupId) type.newValue( obj ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.GroupId newInstance() {
return (net.sf.buildbox.changes.bean.VersionNotesBean.GroupId) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.GroupId newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.GroupId) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* An XML artifactId(@).
*
* This is an atomic type that is a restriction of net.sf.buildbox.changes.bean.VersionNotesBean$ArtifactId.
*/
public interface ArtifactId extends org.apache.xmlbeans.XmlString
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(ArtifactId.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s26F5FA9844D0928D009A0DF45ED2B1EE").resolveHandle("artifactid4c55attrtype");
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId newValue(java.lang.Object obj) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId) type.newValue( obj ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId newInstance() {
return (net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.ArtifactId) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* An XML version(@).
*
* This is an atomic type that is a restriction of net.sf.buildbox.changes.bean.VersionNotesBean$Version.
*/
public interface Version extends org.apache.xmlbeans.XmlString
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Version.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s26F5FA9844D0928D009A0DF45ED2B1EE").resolveHandle("versiona728attrtype");
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.sf.buildbox.changes.bean.VersionNotesBean.Version newValue(java.lang.Object obj) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.Version) type.newValue( obj ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.Version newInstance() {
return (net.sf.buildbox.changes.bean.VersionNotesBean.Version) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean.Version newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.sf.buildbox.changes.bean.VersionNotesBean.Version) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
private Factory() { } // No instance of this class allowed
}
}
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
/** @deprecated No need to be able to create instances of abstract types */
public static net.sf.buildbox.changes.bean.VersionNotesBean newInstance() {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
/** @deprecated No need to be able to create instances of abstract types */
public static net.sf.buildbox.changes.bean.VersionNotesBean newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.sf.buildbox.changes.bean.VersionNotesBean parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.sf.buildbox.changes.bean.VersionNotesBean) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
private Factory() { } // No instance of this class allowed
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy