![JAR search and dependency download from the Maven repository](/logo.png)
net.zeroinstall.model.EntryPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zeroinstall-model Show documentation
Show all versions of zeroinstall-model Show documentation
The Zero Install XSD model transformed by Apache XMLBeans to Java source code.
The newest version!
/*
* XML Type: entry-point
* Namespace: http://zero-install.sourceforge.net/2004/injector/interface
* Java type: net.zeroinstall.model.EntryPoint
*
* Automatically generated - do not modify.
*/
package net.zeroinstall.model;
/**
* An XML entry-point(@http://zero-install.sourceforge.net/2004/injector/interface).
*
* This is a complex type.
*/
public interface EntryPoint extends net.zeroinstall.model.FeedElement
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(EntryPoint.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sF72DE8E096558840226C24CB76C3051D").resolveHandle("entrypoint881dtype");
/**
* Gets array of all "needs-terminal" elements
*/
java.lang.String[] getNeedsTerminalArray();
/**
* Gets ith "needs-terminal" element
*/
java.lang.String getNeedsTerminalArray(int i);
/**
* Gets (as xml) array of all "needs-terminal" elements
*/
org.apache.xmlbeans.XmlString[] xgetNeedsTerminalArray();
/**
* Gets (as xml) ith "needs-terminal" element
*/
org.apache.xmlbeans.XmlString xgetNeedsTerminalArray(int i);
/**
* Returns number of "needs-terminal" element
*/
int sizeOfNeedsTerminalArray();
/**
* Sets array of all "needs-terminal" element
*/
void setNeedsTerminalArray(java.lang.String[] needsTerminalArray);
/**
* Sets ith "needs-terminal" element
*/
void setNeedsTerminalArray(int i, java.lang.String needsTerminal);
/**
* Sets (as xml) array of all "needs-terminal" element
*/
void xsetNeedsTerminalArray(org.apache.xmlbeans.XmlString[] needsTerminalArray);
/**
* Sets (as xml) ith "needs-terminal" element
*/
void xsetNeedsTerminalArray(int i, org.apache.xmlbeans.XmlString needsTerminal);
/**
* Inserts the value as the ith "needs-terminal" element
*/
void insertNeedsTerminal(int i, java.lang.String needsTerminal);
/**
* Appends the value as the last "needs-terminal" element
*/
void addNeedsTerminal(java.lang.String needsTerminal);
/**
* Inserts and returns a new empty value (as xml) as the ith "needs-terminal" element
*/
org.apache.xmlbeans.XmlString insertNewNeedsTerminal(int i);
/**
* Appends and returns a new empty value (as xml) as the last "needs-terminal" element
*/
org.apache.xmlbeans.XmlString addNewNeedsTerminal();
/**
* Removes the ith "needs-terminal" element
*/
void removeNeedsTerminal(int i);
/**
* Gets array of all "name" elements
*/
net.zeroinstall.model.LocalizableString[] getNameArray();
/**
* Gets ith "name" element
*/
net.zeroinstall.model.LocalizableString getNameArray(int i);
/**
* Returns number of "name" element
*/
int sizeOfNameArray();
/**
* Sets array of all "name" element
*/
void setNameArray(net.zeroinstall.model.LocalizableString[] nameArray);
/**
* Sets ith "name" element
*/
void setNameArray(int i, net.zeroinstall.model.LocalizableString name);
/**
* Inserts and returns a new empty value (as xml) as the ith "name" element
*/
net.zeroinstall.model.LocalizableString insertNewName(int i);
/**
* Appends and returns a new empty value (as xml) as the last "name" element
*/
net.zeroinstall.model.LocalizableString addNewName();
/**
* Removes the ith "name" element
*/
void removeName(int i);
/**
* Gets array of all "summary" elements
*/
net.zeroinstall.model.LocalizableString[] getSummaryArray();
/**
* Gets ith "summary" element
*/
net.zeroinstall.model.LocalizableString getSummaryArray(int i);
/**
* Returns number of "summary" element
*/
int sizeOfSummaryArray();
/**
* Sets array of all "summary" element
*/
void setSummaryArray(net.zeroinstall.model.LocalizableString[] summaryArray);
/**
* Sets ith "summary" element
*/
void setSummaryArray(int i, net.zeroinstall.model.LocalizableString summary);
/**
* Inserts and returns a new empty value (as xml) as the ith "summary" element
*/
net.zeroinstall.model.LocalizableString insertNewSummary(int i);
/**
* Appends and returns a new empty value (as xml) as the last "summary" element
*/
net.zeroinstall.model.LocalizableString addNewSummary();
/**
* Removes the ith "summary" element
*/
void removeSummary(int i);
/**
* Gets array of all "description" elements
*/
net.zeroinstall.model.LocalizableString[] getDescriptionArray();
/**
* Gets ith "description" element
*/
net.zeroinstall.model.LocalizableString getDescriptionArray(int i);
/**
* Returns number of "description" element
*/
int sizeOfDescriptionArray();
/**
* Sets array of all "description" element
*/
void setDescriptionArray(net.zeroinstall.model.LocalizableString[] descriptionArray);
/**
* Sets ith "description" element
*/
void setDescriptionArray(int i, net.zeroinstall.model.LocalizableString description);
/**
* Inserts and returns a new empty value (as xml) as the ith "description" element
*/
net.zeroinstall.model.LocalizableString insertNewDescription(int i);
/**
* Appends and returns a new empty value (as xml) as the last "description" element
*/
net.zeroinstall.model.LocalizableString addNewDescription();
/**
* Removes the ith "description" element
*/
void removeDescription(int i);
/**
* Gets array of all "icon" elements
*/
net.zeroinstall.model.Icon[] getIconArray();
/**
* Gets ith "icon" element
*/
net.zeroinstall.model.Icon getIconArray(int i);
/**
* Returns number of "icon" element
*/
int sizeOfIconArray();
/**
* Sets array of all "icon" element
*/
void setIconArray(net.zeroinstall.model.Icon[] iconArray);
/**
* Sets ith "icon" element
*/
void setIconArray(int i, net.zeroinstall.model.Icon icon);
/**
* Inserts and returns a new empty value (as xml) as the ith "icon" element
*/
net.zeroinstall.model.Icon insertNewIcon(int i);
/**
* Appends and returns a new empty value (as xml) as the last "icon" element
*/
net.zeroinstall.model.Icon addNewIcon();
/**
* Removes the ith "icon" element
*/
void removeIcon(int i);
/**
* Gets the "command" attribute
*/
java.lang.String getCommand();
/**
* Gets (as xml) the "command" attribute
*/
org.apache.xmlbeans.XmlString xgetCommand();
/**
* Sets the "command" attribute
*/
void setCommand(java.lang.String command);
/**
* Sets (as xml) the "command" attribute
*/
void xsetCommand(org.apache.xmlbeans.XmlString command);
/**
* Gets the "binary-name" attribute
*/
java.lang.String getBinaryName();
/**
* Gets (as xml) the "binary-name" attribute
*/
org.apache.xmlbeans.XmlString xgetBinaryName();
/**
* True if has "binary-name" attribute
*/
boolean isSetBinaryName();
/**
* Sets the "binary-name" attribute
*/
void setBinaryName(java.lang.String binaryName);
/**
* Sets (as xml) the "binary-name" attribute
*/
void xsetBinaryName(org.apache.xmlbeans.XmlString binaryName);
/**
* Unsets the "binary-name" attribute
*/
void unsetBinaryName();
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static net.zeroinstall.model.EntryPoint newInstance() {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static net.zeroinstall.model.EntryPoint newInstance(org.apache.xmlbeans.XmlOptions options) {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static net.zeroinstall.model.EntryPoint parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static net.zeroinstall.model.EntryPoint parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static net.zeroinstall.model.EntryPoint parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static net.zeroinstall.model.EntryPoint parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static net.zeroinstall.model.EntryPoint parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static net.zeroinstall.model.EntryPoint parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static net.zeroinstall.model.EntryPoint parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static net.zeroinstall.model.EntryPoint parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.zeroinstall.model.EntryPoint parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (net.zeroinstall.model.EntryPoint) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static net.zeroinstall.model.EntryPoint 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.zeroinstall.model.EntryPoint) 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 - 2025 Weber Informatics LLC | Privacy Policy