Tabnine Logo
XMLInteraction.getFunctionName
Code IndexAdd Tabnine to your IDE (free)

How to use
getFunctionName
method
in
org.eclipse.persistence.eis.interactions.XMLInteraction

Best Java code snippets using org.eclipse.persistence.eis.interactions.XMLInteraction.getFunctionName (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

protected void addXMLInteractionLines(NonreflectiveMethodDefinition method, XMLInteraction interaction, String variableName) {
  method.addLine("org.eclipse.persistence.eis.XMLInteraction " + variableName + " = new org.eclipse.persistence.eis.XMLInteraction();");
  if ((interaction.getFunctionName() != null) && (interaction.getFunctionName().length() != 0)) {
    method.addLine(variableName + ".setFunctionName(\"" + interaction.getFunctionName() + "\");");
  }
  if ((interaction.getInputRecordName() != null) && (interaction.getInputRecordName().length() != 0)) {
    method.addLine(variableName + ".setInputRecordName(\"" + interaction.getInputRecordName() + "\");");
  }
  if ((interaction.getInputRootElementName() != null) && (interaction.getInputRootElementName().length() != 0)) {
    method.addLine(variableName + ".setInputRootElementName(\"" + interaction.getInputRootElementName() + "\");");
  }
  if ((interaction.getInputResultPath() != null) && (interaction.getInputResultPath().length() != 0)) {
    method.addLine(variableName + ".setInputResultPath(\"" + interaction.getInputResultPath() + "\");");
  }
  if ((interaction.getOutputResultPath() != null) && (interaction.getOutputResultPath().length() != 0)) {
    method.addLine(variableName + ".setOutputResultPath(\"" + interaction.getOutputResultPath() + "\");");
  }
  for (int index = interaction.getArgumentNames().size();
       index < interaction.getArgumentNames().size(); index++) {
    String argumentName = (String)interaction.getArgumentNames().get(index);
    String argument = (String)interaction.getArguments().get(index);
    method.addLine(variableName + ".addArgument(\"" + argumentName + "\", \"" + argument + "\");");
  }
}
origin: com.haulmont.thirdparty/eclipselink

protected void addXMLInteractionLines(NonreflectiveMethodDefinition method, XMLInteraction interaction, String variableName) {
  method.addLine("org.eclipse.persistence.eis.XMLInteraction " + variableName + " = new org.eclipse.persistence.eis.XMLInteraction();");
  if ((interaction.getFunctionName() != null) && (interaction.getFunctionName().length() != 0)) {
    method.addLine(variableName + ".setFunctionName(\"" + interaction.getFunctionName() + "\");");
  }
  if ((interaction.getInputRecordName() != null) && (interaction.getInputRecordName().length() != 0)) {
    method.addLine(variableName + ".setInputRecordName(\"" + interaction.getInputRecordName() + "\");");
  }
  if ((interaction.getInputRootElementName() != null) && (interaction.getInputRootElementName().length() != 0)) {
    method.addLine(variableName + ".setInputRootElementName(\"" + interaction.getInputRootElementName() + "\");");
  }
  if ((interaction.getInputResultPath() != null) && (interaction.getInputResultPath().length() != 0)) {
    method.addLine(variableName + ".setInputResultPath(\"" + interaction.getInputResultPath() + "\");");
  }
  if ((interaction.getOutputResultPath() != null) && (interaction.getOutputResultPath().length() != 0)) {
    method.addLine(variableName + ".setOutputResultPath(\"" + interaction.getOutputResultPath() + "\");");
  }
  for (int index = interaction.getArgumentNames().size();
       index < interaction.getArgumentNames().size(); index++) {
    String argumentName = (String)interaction.getArgumentNames().get(index);
    String argument = (String)interaction.getArguments().get(index);
    method.addLine(variableName + ".addArgument(\"" + argumentName + "\", \"" + argument + "\");");
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

protected void addXMLInteractionLines(NonreflectiveMethodDefinition method, XMLInteraction interaction, String variableName) {
  method.addLine("org.eclipse.persistence.eis.XMLInteraction " + variableName + " = new org.eclipse.persistence.eis.XMLInteraction();");
  if ((interaction.getFunctionName() != null) && (interaction.getFunctionName().length() != 0)) {
    method.addLine(variableName + ".setFunctionName(\"" + interaction.getFunctionName() + "\");");
  }
  if ((interaction.getInputRecordName() != null) && (interaction.getInputRecordName().length() != 0)) {
    method.addLine(variableName + ".setInputRecordName(\"" + interaction.getInputRecordName() + "\");");
  }
  if ((interaction.getInputRootElementName() != null) && (interaction.getInputRootElementName().length() != 0)) {
    method.addLine(variableName + ".setInputRootElementName(\"" + interaction.getInputRootElementName() + "\");");
  }
  if ((interaction.getInputResultPath() != null) && (interaction.getInputResultPath().length() != 0)) {
    method.addLine(variableName + ".setInputResultPath(\"" + interaction.getInputResultPath() + "\");");
  }
  if ((interaction.getOutputResultPath() != null) && (interaction.getOutputResultPath().length() != 0)) {
    method.addLine(variableName + ".setOutputResultPath(\"" + interaction.getOutputResultPath() + "\");");
  }
  for (int index = interaction.getArgumentNames().size();
       index < interaction.getArgumentNames().size(); index++) {
    String argumentName = (String)interaction.getArgumentNames().get(index);
    String argument = (String)interaction.getArguments().get(index);
    method.addLine(variableName + ".addArgument(\"" + argumentName + "\", \"" + argument + "\");");
  }
}
org.eclipse.persistence.eis.interactionsXMLInteractiongetFunctionName

Popular methods of XMLInteraction

  • createInputDOM
    Create a DOM for this interaction. Convert the database row or arguments into an XML DOM tree.
  • createXMLRecord
    INTERNAL: Use the createRecord method on ObjectBuilder in case the root element is namespace qualifi
  • getArgumentNames
  • getArguments
  • getInputRecordName
  • getInputResultPath
  • getInputRootElementName
    PUBLIC: Return the root element name to use for the input DOM.
  • getInputRow
  • getInteractionSpec
  • getOutputArgumentNames
  • getOutputArguments
  • getOutputResultPath
  • getOutputArguments,
  • getOutputResultPath,
  • getOutputRootElementName,
  • getParameters,
  • getProperties,
  • getQuery,
  • hasArguments,
  • hasOutputArguments,
  • prepare

Popular in Java

  • Making http post requests using okhttp
  • addToBackStack (FragmentTransaction)
  • setContentView (Activity)
  • getSystemService (Context)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Notification (javax.management)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • CodeWhisperer alternatives
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