Tabnine Logo
XfaForm$Stack2.push
Code IndexAdd Tabnine to your IDE (free)

How to use
push
method
in
com.lowagie.text.pdf.XfaForm$Stack2

Best Java code snippets using com.lowagie.text.pdf.XfaForm$Stack2.push (Showing top 6 results out of 315)

origin: es.gob.afirma/afirma-crypto-pdf-itext

  private void processDatasetsInternal(Node n) {
    HashMap ss = new HashMap();
    Node n2 = n.getFirstChild();
    while (n2 != null) {
      if (n2.getNodeType() == Node.ELEMENT_NODE) {
        String s = escapeSom(n2.getLocalName());
        Integer i = (Integer)ss.get(s);
        if (i == null)
          i = new Integer(0);
        else
          i = new Integer(i.intValue() + 1);
        ss.put(s, i);
        if (hasChildren(n2)) {
          stack.push(s + "[" + i.toString() + "]");
          processDatasetsInternal(n2);
          stack.pop();
        }
        else {
          stack.push(s + "[" + i.toString() + "]");
          String unstack = printStack();
          order.add(unstack);
          inverseSearchAdd(unstack);
          name2Node.put(unstack, n2);
          stack.pop();
        }
      }
      n2 = n2.getNextSibling();
    }
  }
}
origin: com.github.librepdf/openpdf

  ss.put(nn, i);
stack.push(nn + "[" + i.toString() + "]");
++templateLevel;
if (annon)
    i = new Integer(i.intValue() + 1);
  ff.put(nn, i);
  stack.push(nn + "[" + i.toString() + "]");
  String unstack = printStack();
  order.add(unstack);
origin: es.gob.afirma/afirma-crypto-pdf-itext

  ss.put(nn, i);
stack.push(nn + "[" + i.toString() + "]");
++templateLevel;
if (annon)
    i = new Integer(i.intValue() + 1);
  ff.put(nn, i);
  stack.push(nn + "[" + i.toString() + "]");
  String unstack = printStack();
  order.add(unstack);
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

  ss.put(nn, i);
stack.push(nn + "[" + i.toString() + "]");
++templateLevel;
if (annon)
    i = new Integer(i.intValue() + 1);
  ff.put(nn, i);
  stack.push(nn + "[" + i.toString() + "]");
  String unstack = printStack();
  order.add(unstack);
origin: fr.opensagres.xdocreport.itext-gae/itext-gae

  private void processDatasetsInternal(Node n) {
    HashMap ss = new HashMap();
    Node n2 = n.getFirstChild();
    while (n2 != null) {
      if (n2.getNodeType() == Node.ELEMENT_NODE) {
        String s = escapeSom(n2.getLocalName());
        Integer i = (Integer)ss.get(s);
        if (i == null)
          i = new Integer(0);
        else
          i = new Integer(i.intValue() + 1);
        ss.put(s, i);
        if (hasChildren(n2)) {
          stack.push(s + "[" + i.toString() + "]");
          processDatasetsInternal(n2);
          stack.pop();
        }
        else {
          stack.push(s + "[" + i.toString() + "]");
          String unstack = printStack();
          order.add(unstack);
          inverseSearchAdd(unstack);
          name2Node.put(unstack, n2);
          stack.pop();
        }
      }
      n2 = n2.getNextSibling();
    }
  }
}
origin: com.github.librepdf/openpdf

  private void processDatasetsInternal(Node n) {
    HashMap ss = new HashMap();
    Node n2 = n.getFirstChild();
    while (n2 != null) {
      if (n2.getNodeType() == Node.ELEMENT_NODE) {
        String s = escapeSom(n2.getLocalName());
        Integer i = (Integer)ss.get(s);
        if (i == null)
          i = new Integer(0);
        else
          i = new Integer(i.intValue() + 1);
        ss.put(s, i);
        if (hasChildren(n2)) {
          stack.push(s + "[" + i.toString() + "]");
          processDatasetsInternal(n2);
          stack.pop();
        }
        else {
          stack.push(s + "[" + i.toString() + "]");
          String unstack = printStack();
          order.add(unstack);
          inverseSearchAdd(unstack);
          name2Node.put(unstack, n2);
          stack.pop();
        }
      }
      n2 = n2.getNextSibling();
    }
  }
}
com.lowagie.text.pdfXfaForm$Stack2push

Javadoc

Pushes an item onto the top of this stack.

Popular methods of XfaForm$Stack2

  • <init>
  • add
  • empty
    Tests if this stack is empty.
  • get
  • peek
    Looks at the object at the top of this stack without removing it from the stack.
  • pop
    Removes the object at the top of this stack and returns that object as the value of this function.
  • remove
  • size

Popular in Java

  • Finding current android device location
  • startActivity (Activity)
  • getSystemService (Context)
  • getResourceAsStream (ClassLoader)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • From CI to AI: The AI layer in your organization
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