congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
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

  • Running tasks concurrently on multiple threads
  • getApplicationContext (Context)
  • putExtra (Intent)
  • notifyDataSetChanged (ArrayAdapter)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • JOptionPane (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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