Codota Logo
EDIConfigDigester.setValuesForValueNode
Code IndexAdd Codota to your IDE (free)

How to use
setValuesForValueNode
method
in
org.milyn.edisax.model.EDIConfigDigester

Best Java code snippets using org.milyn.edisax.model.EDIConfigDigester.setValuesForValueNode (Showing top 12 results out of 315)

  • Common ways to obtain EDIConfigDigester
private void myMethod () {
EDIConfigDigester e =
  • Codota IconURI uRI;URI resourceURI;new EDIConfigDigester(uRI, URIResourceLocator.extractBaseURI(resourceURI))
  • Codota IconURI modelURI;URI importBaseURI;new EDIConfigDigester(modelURI, importBaseURI)
  • Smart code suggestions by Codota
}
origin: org.milyn/milyn-edisax-parser

/**
 * Set values in {@link org.milyn.edisax.model.internal.SubComponent}.
 * @param node the {@link org.milyn.edisax.model.internal.SubComponent} to populate.
 * @param subComponent the SubComponent element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForSubComponent(Node node, SubComponent subComponent, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  subComponent.setRequired(getNodeValueAsBoolean(node, "required"));
  setValuesForValueNode(node, subComponent, namespacePrefix, parent);
}
origin: smooks/smooks

/**
 * Set values in {@link org.milyn.edisax.model.internal.SubComponent}.
 * @param node the {@link org.milyn.edisax.model.internal.SubComponent} to populate.
 * @param subComponent the SubComponent element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForSubComponent(Node node, SubComponent subComponent, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  subComponent.setRequired(getNodeValueAsBoolean(node, "required"));
  setValuesForValueNode(node, subComponent, namespacePrefix, parent);
}
origin: org.milyn/milyn-smooks-all

/**
 * Set values in {@link org.milyn.edisax.model.internal.SubComponent}.
 * @param node the {@link org.milyn.edisax.model.internal.SubComponent} to populate.
 * @param subComponent the SubComponent element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForSubComponent(Node node, SubComponent subComponent, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  subComponent.setRequired(getNodeValueAsBoolean(node, "required"));
  setValuesForValueNode(node, subComponent, namespacePrefix, parent);
}
origin: org.virtuslab/milyn-edisax-parser

/**
 * Set values in {@link org.milyn.edisax.model.internal.SubComponent}.
 * @param node the {@link org.milyn.edisax.model.internal.SubComponent} to populate.
 * @param subComponent the SubComponent element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForSubComponent(Node node, SubComponent subComponent, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  subComponent.setRequired(getNodeValueAsBoolean(node, "required"));
  setValuesForValueNode(node, subComponent, namespacePrefix, parent);
}
origin: org.milyn/milyn-edisax-parser

/**
 * Set values in {@link org.milyn.edisax.model.internal.Component}.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param node the Component element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForComponent(Component component, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  component.setRequired(getNodeValueAsBoolean(node, "required"));
  component.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, component, namespacePrefix, parent);
}
origin: smooks/smooks

/**
 * Set values in {@link org.milyn.edisax.model.internal.Field}.
 * @param field the {@link org.milyn.edisax.model.internal.Field} to populate.
 * @param node the Field element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForField(Field field, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  field.setRequired(getNodeValueAsBoolean(node, "required"));
  field.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, field, namespacePrefix, parent);
}
origin: org.milyn/milyn-smooks-all

/**
 * Set values in {@link org.milyn.edisax.model.internal.Component}.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param node the Component element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForComponent(Component component, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  component.setRequired(getNodeValueAsBoolean(node, "required"));
  component.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, component, namespacePrefix, parent);
}
origin: org.milyn/milyn-smooks-all

/**
 * Set values in {@link org.milyn.edisax.model.internal.Field}.
 * @param field the {@link org.milyn.edisax.model.internal.Field} to populate.
 * @param node the Field element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForField(Field field, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  field.setRequired(getNodeValueAsBoolean(node, "required"));
  field.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, field, namespacePrefix, parent);
}
origin: org.milyn/milyn-edisax-parser

/**
 * Set values in {@link org.milyn.edisax.model.internal.Field}.
 * @param field the {@link org.milyn.edisax.model.internal.Field} to populate.
 * @param node the Field element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForField(Field field, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  field.setRequired(getNodeValueAsBoolean(node, "required"));
  field.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, field, namespacePrefix, parent);
}
origin: org.virtuslab/milyn-edisax-parser

/**
 * Set values in {@link org.milyn.edisax.model.internal.Field}.
 * @param field the {@link org.milyn.edisax.model.internal.Field} to populate.
 * @param node the Field element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForField(Field field, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  field.setRequired(getNodeValueAsBoolean(node, "required"));
  field.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, field, namespacePrefix, parent);
}
origin: smooks/smooks

/**
 * Set values in {@link org.milyn.edisax.model.internal.Component}.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param node the Component element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForComponent(Component component, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  component.setRequired(getNodeValueAsBoolean(node, "required"));
  component.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, component, namespacePrefix, parent);
}
origin: org.virtuslab/milyn-edisax-parser

/**
 * Set values in {@link org.milyn.edisax.model.internal.Component}.
 * @param component the {@link org.milyn.edisax.model.internal.Component} to populate.
 * @param node the Component element.
 * @throws org.milyn.edisax.EDIConfigurationException is thrown when values are badly formatted.
 */
private void setValuesForComponent(Component component, Node node, String namespacePrefix, MappingNode parent) throws EDIConfigurationException {
  component.setRequired(getNodeValueAsBoolean(node, "required"));
  component.setTruncatable(getNodeValueAsBoolean(node, "truncatable"));
  setValuesForValueNode(node, component, namespacePrefix, parent);
}
org.milyn.edisax.modelEDIConfigDigestersetValuesForValueNode

Javadoc

Set values in org.milyn.edisax.model.internal.ValueNode.

Popular methods of EDIConfigDigester

  • <init>
    Public constructor.
  • assertValidXSD
    Assert that schema used for validation are valid, i.e. the schema is either edi-message-mapping-1.0
  • digestComponent
    Digests attributes and child elements of Component element.
  • digestDelimiters
    Digest attributes of Delimiter element and populate Delimiter.
  • digestDescription
    Digest attributes of Description element and populate Description.
  • digestEDIConfig
  • digestField
    Digests attributes and child elements of Field element.
  • digestImport
    Digest attributes of Import element and populate Import.
  • digestParameters
    Digests parameters from parameters attribute and insertsthe parameters into the valueNode. If first
  • digestSegment
    Digests attributes and child elements of Segment element.
  • digestSegmentGroup
  • digestSegments
    Digest attributes and child elements of Segments element. Populates Segments.
  • digestSegmentGroup,
  • digestSegments,
  • digestXSDValidatedConfig,
  • getAttributeValue,
  • getNodeValue,
  • getNodeValueAsBoolean,
  • getNodeValueAsInteger,
  • retrieveNamespace,
  • setValuesForComponent,
  • setValuesForField

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • addToBackStack (FragmentTransaction)
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • ConcurrentHashMap (java.util.concurrent)
    A hash table supporting full concurrency of retrievals and adjustable expected concurrency for updat
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
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