congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
XaDatasourcePropertyTypeImpl
Code IndexAdd Tabnine to your IDE (free)

How to use
XaDatasourcePropertyTypeImpl
in
org.jboss.jca.embedded.dsl.datasources13.impl

Best Java code snippets using org.jboss.jca.embedded.dsl.datasources13.impl.XaDatasourcePropertyTypeImpl (Showing top 6 results out of 315)

origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>xa-datasource-property</code> element 
* @return the new created instance of <code>XaDatasourcePropertyType<XaDatasourceType<T>></code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> createXaDatasourceProperty()
{
 return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>xa-datasource-property</code> element 
* @return the new created instance of <code>XaDatasourcePropertyType<XaDatasourceType<T>></code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> createXaDatasourceProperty()
{
 return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>xa-datasource-property</code> elements
* @return list of <code>xa-datasource-property</code> 
*/
public List<XaDatasourcePropertyType<XaDatasourceType<T>>> getAllXaDatasourceProperty()
{
 List<XaDatasourcePropertyType<XaDatasourceType<T>>> list = new ArrayList<XaDatasourcePropertyType<XaDatasourceType<T>>>();
 List<Node> nodeList = childNode.get("xa-datasource-property");
 for(Node node: nodeList)
 {
   XaDatasourcePropertyType<XaDatasourceType<T>>  type = new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>xa-datasource-property</code> elements
* @return list of <code>xa-datasource-property</code> 
*/
public List<XaDatasourcePropertyType<XaDatasourceType<T>>> getAllXaDatasourceProperty()
{
 List<XaDatasourcePropertyType<XaDatasourceType<T>>> list = new ArrayList<XaDatasourcePropertyType<XaDatasourceType<T>>>();
 List<Node> nodeList = childNode.get("xa-datasource-property");
 for(Node node: nodeList)
 {
   XaDatasourcePropertyType<XaDatasourceType<T>>  type = new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>xa-datasource-property</code> element will be created and returned.
* Otherwise, the first existing <code>xa-datasource-property</code> element will be returned.
* @return the instance defined for the element <code>xa-datasource-property</code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> getOrCreateXaDatasourceProperty()
{
 List<Node> nodeList = childNode.get("xa-datasource-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, nodeList.get(0));
 }
 return createXaDatasourceProperty();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>xa-datasource-property</code> element will be created and returned.
* Otherwise, the first existing <code>xa-datasource-property</code> element will be returned.
* @return the instance defined for the element <code>xa-datasource-property</code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> getOrCreateXaDatasourceProperty()
{
 List<Node> nodeList = childNode.get("xa-datasource-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, nodeList.get(0));
 }
 return createXaDatasourceProperty();
}
org.jboss.jca.embedded.dsl.datasources13.implXaDatasourcePropertyTypeImpl

Javadoc

This class implements the xa-datasource-propertyType xsd type

Most used methods

  • <init>

Popular in Java

  • Making http post requests using okhttp
  • putExtra (Intent)
  • startActivity (Activity)
  • getExternalFilesDir (Context)
  • ObjectMapper (com.fasterxml.jackson.databind)
    ObjectMapper provides functionality for reading and writing JSON, either to and from basic POJOs (Pl
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • JFrame (javax.swing)
  • Table (org.hibernate.mapping)
    A relational table
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now