Tabnine Logo
IronjacamarDescriptorImpl
Code IndexAdd Tabnine to your IDE (free)

How to use
IronjacamarDescriptorImpl
in
org.jboss.jca.embedded.dsl.ironjacamar10.impl

Best Java code snippets using org.jboss.jca.embedded.dsl.ironjacamar10.impl.IronjacamarDescriptorImpl (Showing top 4 results out of 315)

origin: org.jboss.ironjacamar/ironjacamar-embedded

public IronjacamarDescriptorImpl(String descriptorName, Node node)
{
 super(descriptorName);
 this.model = node;
 addDefaultNamespaces();
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<IronjacamarDescriptor> getOrCreateConfigProperty()
{
 List<Node> nodeList = model.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<IronjacamarDescriptor>(this, "config-property", model, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<IronjacamarDescriptor> getOrCreateConfigProperty()
{
 List<Node> nodeList = model.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<IronjacamarDescriptor>(this, "config-property", model, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

public IronjacamarDescriptorImpl(String descriptorName, Node node)
{
 super(descriptorName);
 this.model = node;
 addDefaultNamespaces();
}
org.jboss.jca.embedded.dsl.ironjacamar10.implIronjacamarDescriptorImpl

Javadoc

This deployment descriptor provides the functionalities as described in the specification

Example:

IronjacamarDescriptor descriptor = Descriptors.create(IronjacamarDescriptor.class);

Most used methods

  • addDefaultNamespaces
    Adds the default namespaces as defined in the specification
  • createConfigProperty
    Creates a new config-property element

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setScale (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • requestLocationUpdates (LocationManager)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Locale (java.util)
    Locale represents a language/country/variant combination. Locales are used to alter the presentatio
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Top 25 Plugins for Webstorm
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