Codota Logo
SubComponent.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.milyn.edisax.model.internal.SubComponent
constructor

Best Java code snippets using org.milyn.edisax.model.internal.SubComponent.<init> (Showing top 4 results out of 315)

  • Common ways to obtain SubComponent
private void myMethod () {
SubComponent s =
  • Codota Iconnew SubComponent()
  • Smart code suggestions by Codota
}
origin: smooks/smooks

/**
 * Digests attributes and child elements of Component element.
 * @param node the Component element.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param namespacePrefix the prefix used to name elements in xml.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void digestComponent(Node node, Component component, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  setValuesForComponent(component, node, namespacePrefix, parent);
  NodeList nodes = node.getChildNodes();
  for (int i = 0; i < nodes.getLength(); i++) {
    Node currentNode = nodes.item(i);
    if (currentNode.getNodeName().equalsIgnoreCase(namespacePrefix + "sub-component")) {
      SubComponent subComponent = new SubComponent();
      component.getSubComponents().add(subComponent);
      setValuesForSubComponent(currentNode, subComponent, namespacePrefix, component);
    }
  }
}
origin: org.milyn/milyn-edisax-parser

/**
 * Digests attributes and child elements of Component element.
 * @param node the Component element.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param namespacePrefix the prefix used to name elements in xml.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void digestComponent(Node node, Component component, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  setValuesForComponent(component, node, namespacePrefix, parent);
  NodeList nodes = node.getChildNodes();
  for (int i = 0; i < nodes.getLength(); i++) {
    Node currentNode = nodes.item(i);
    if (currentNode.getNodeName().equalsIgnoreCase(namespacePrefix + "sub-component")) {
      SubComponent subComponent = new SubComponent();
      component.getSubComponents().add(subComponent);
      setValuesForSubComponent(currentNode, subComponent, namespacePrefix, component);
    }
  }
}
origin: org.milyn/milyn-smooks-all

/**
 * Digests attributes and child elements of Component element.
 * @param node the Component element.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param namespacePrefix the prefix used to name elements in xml.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void digestComponent(Node node, Component component, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  setValuesForComponent(component, node, namespacePrefix, parent);
  NodeList nodes = node.getChildNodes();
  for (int i = 0; i < nodes.getLength(); i++) {
    Node currentNode = nodes.item(i);
    if (currentNode.getNodeName().equalsIgnoreCase(namespacePrefix + "sub-component")) {
      SubComponent subComponent = new SubComponent();
      component.getSubComponents().add(subComponent);
      setValuesForSubComponent(currentNode, subComponent, namespacePrefix, component);
    }
  }
}
origin: org.virtuslab/milyn-edisax-parser

/**
 * Digests attributes and child elements of Component element.
 * @param node the Component element.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param namespacePrefix the prefix used to name elements in xml.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void digestComponent(Node node, Component component, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  setValuesForComponent(component, node, namespacePrefix, parent);
  NodeList nodes = node.getChildNodes();
  for (int i = 0; i < nodes.getLength(); i++) {
    Node currentNode = nodes.item(i);
    if (currentNode.getNodeName().equalsIgnoreCase(namespacePrefix + "sub-component")) {
      SubComponent subComponent = new SubComponent();
      component.getSubComponents().add(subComponent);
      setValuesForSubComponent(currentNode, subComponent, namespacePrefix, component);
    }
  }
}
org.milyn.edisax.model.internalSubComponent<init>

Popular methods of SubComponent

  • getXmltag
  • isRequired
  • setRequired

Popular in Java

  • Updating database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • onCreateOptionsMenu (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Locale (java.util)
    A Locale object represents a specific geographical, political, or cultural region. An operation that
  • Reference (javax.naming)
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now