Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo Maven / Gradle / Ivy
/*
* XML Type: SystemInfo
* Namespace: http://ehelse.no/xmlstds/eresept/mv/2017-01-01
* Java type: no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo
*
* Automatically generated - do not modify.
*/
package no.ehelse.xmlstds.eresept.mv.x20170101;
/**
* An XML SystemInfo(@http://ehelse.no/xmlstds/eresept/mv/2017-01-01).
*
* This is a complex type.
*/
public interface SystemInfo extends org.apache.xmlbeans.XmlObject
{
public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(SystemInfo.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.s0941151A5657AC89A84276EF3A8289C2").resolveHandle("systeminfoed4dtype");
/**
* Gets the "SystemCode" element
*/
java.lang.String getSystemCode();
/**
* Gets (as xml) the "SystemCode" element
*/
org.apache.xmlbeans.XmlString xgetSystemCode();
/**
* Sets the "SystemCode" element
*/
void setSystemCode(java.lang.String systemCode);
/**
* Sets (as xml) the "SystemCode" element
*/
void xsetSystemCode(org.apache.xmlbeans.XmlString systemCode);
/**
* Gets the "SystemName" element
*/
java.lang.String getSystemName();
/**
* Gets (as xml) the "SystemName" element
*/
org.apache.xmlbeans.XmlString xgetSystemName();
/**
* Sets the "SystemName" element
*/
void setSystemName(java.lang.String systemName);
/**
* Sets (as xml) the "SystemName" element
*/
void xsetSystemName(org.apache.xmlbeans.XmlString systemName);
/**
* Gets the "Version" element
*/
java.lang.String getVersion();
/**
* Gets (as xml) the "Version" element
*/
org.apache.xmlbeans.XmlString xgetVersion();
/**
* Sets the "Version" element
*/
void setVersion(java.lang.String version);
/**
* Sets (as xml) the "Version" element
*/
void xsetVersion(org.apache.xmlbeans.XmlString version);
/**
* Gets the "TimeLastUpdated" element
*/
java.util.Calendar getTimeLastUpdated();
/**
* Gets (as xml) the "TimeLastUpdated" element
*/
org.apache.xmlbeans.XmlDateTime xgetTimeLastUpdated();
/**
* Sets the "TimeLastUpdated" element
*/
void setTimeLastUpdated(java.util.Calendar timeLastUpdated);
/**
* Sets (as xml) the "TimeLastUpdated" element
*/
void xsetTimeLastUpdated(org.apache.xmlbeans.XmlDateTime timeLastUpdated);
/**
* A factory class with static methods for creating instances
* of this type.
*/
public static final class Factory
{
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo newInstance() {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo newInstance(org.apache.xmlbeans.XmlOptions options) {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
/** @param xmlAsString the string value to parse */
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
/** @param file the file from which to load an xml document */
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
return (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
/** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
public static no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo 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 (no.ehelse.xmlstds.eresept.mv.x20170101.SystemInfo) 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
}
}