
org.apache.airavata.schemas.gfac.impl.ApplicationDeploymentDescriptionDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: applicationDeploymentDescription
* Namespace: http://airavata.apache.org/schemas/gfac/2012/12
* Java type: org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionDocument
*
* Automatically generated - do not modify.
*/
package org.apache.airavata.schemas.gfac.impl;
/**
* A document containing one applicationDeploymentDescription(@http://airavata.apache.org/schemas/gfac/2012/12) element.
*
* This is a complex type.
*/
public class ApplicationDeploymentDescriptionDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionDocument
{
private static final long serialVersionUID = 1L;
public ApplicationDeploymentDescriptionDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName APPLICATIONDEPLOYMENTDESCRIPTION$0 =
new javax.xml.namespace.QName("http://airavata.apache.org/schemas/gfac/2012/12", "applicationDeploymentDescription");
/**
* Gets the "applicationDeploymentDescription" element
*/
public org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType getApplicationDeploymentDescription()
{
synchronized (monitor())
{
check_orphaned();
org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType target = null;
target = (org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType)get_store().find_element_user(APPLICATIONDEPLOYMENTDESCRIPTION$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "applicationDeploymentDescription" element
*/
public void setApplicationDeploymentDescription(org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType applicationDeploymentDescription)
{
synchronized (monitor())
{
check_orphaned();
org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType target = null;
target = (org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType)get_store().find_element_user(APPLICATIONDEPLOYMENTDESCRIPTION$0, 0);
if (target == null)
{
target = (org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType)get_store().add_element_user(APPLICATIONDEPLOYMENTDESCRIPTION$0);
}
target.set(applicationDeploymentDescription);
}
}
/**
* Appends and returns a new empty "applicationDeploymentDescription" element
*/
public org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType addNewApplicationDeploymentDescription()
{
synchronized (monitor())
{
check_orphaned();
org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType target = null;
target = (org.apache.airavata.schemas.gfac.ApplicationDeploymentDescriptionType)get_store().add_element_user(APPLICATIONDEPLOYMENTDESCRIPTION$0);
return target;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy