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

How to use
LabelAction
in
de.l3s.boilerpipe.labels

Best Java code snippets using de.l3s.boilerpipe.labels.LabelAction (Showing top 14 results out of 315)

origin: de.l3s.boilerpipe/boilerpipe

public void addTo(final TextBlock tb) {
  addLabelsTo(tb);
}

origin: de.l3s.boilerpipe/boilerpipe

protected void addTextBlock(final TextBlock tb) {
  for (Integer l : fontSizeStack) {
    if (l != null) {
      tb.addLabel("font-" + l);
      break;
    }
  }
  for (LabelAction labels : labelStack) {
    if (labels != null) {
      labels.addTo(tb);
    }
  }
  textBlocks.add(tb);
}
origin: Netbreeze-GmbH/boilerpipe

instance.addLabelAction(new LabelAction(labelsWithAncestors
    .toArray(new String[labelsWithAncestors.size()])));
origin: Netbreeze-GmbH/boilerpipe

protected void addTextBlock(final TextBlock tb) {
  for (Integer l : fontSizeStack) {
    if (l != null) {
      tb.addLabel("font-" + l);
      break;
    }
  }
  for (LinkedList<LabelAction> labelStack : labelStacks) {
    if (labelStack != null) {
      for (LabelAction labels : labelStack) {
        if (labels != null) {
          labels.addTo(tb);
        }
      }
    }
  }
  textBlocks.add(tb);
}
origin: com.syncthemall/boilerpipe

instance.addLabelAction(new LabelAction(labelsWithAncestors
    .toArray(new String[labelsWithAncestors.size()])));
origin: com.syncthemall/boilerpipe

public void addTo(final TextBlock tb) {
  addLabelsTo(tb);
}

origin: com.syncthemall/boilerpipe

protected void addTextBlock(final TextBlock tb) {
  for (Integer l : fontSizeStack) {
    if (l != null) {
      tb.addLabel("font-" + l);
      break;
    }
  }
  for (LinkedList<LabelAction> labelStack : labelStacks) {
    if (labelStack != null) {
      for (LabelAction labels : labelStack) {
        if (labels != null) {
          labels.addTo(tb);
        }
      }
    }
  }
  textBlocks.add(tb);
}
origin: pvdlg/boilerpipe

instance.addLabelAction(new LabelAction(labelsWithAncestors
    .toArray(new String[labelsWithAncestors.size()])));
origin: pvdlg/boilerpipe

public void addTo(final TextBlock tb) {
  addLabelsTo(tb);
}

origin: pvdlg/boilerpipe

protected void addTextBlock(final TextBlock tb) {
  for (Integer l : fontSizeStack) {
    if (l != null) {
      tb.addLabel("font-" + l);
      break;
    }
  }
  for (LinkedList<LabelAction> labelStack : labelStacks) {
    if (labelStack != null) {
      for (LabelAction labels : labelStack) {
        if (labels != null) {
          labels.addTo(tb);
        }
      }
    }
  }
  textBlocks.add(tb);
}
origin: com.syncthemall/boilerpipe

    new LabelAction(DefaultLabels.LI)));
setTagAction("H1", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H1, DefaultLabels.HEADING)));
setTagAction("H2", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H2, DefaultLabels.HEADING)));
setTagAction("H3", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H3, DefaultLabels.HEADING)));
origin: Netbreeze-GmbH/boilerpipe

public void addTo(final TextBlock tb) {
  addLabelsTo(tb);
}

origin: Netbreeze-GmbH/boilerpipe

    new LabelAction(DefaultLabels.LI)));
setTagAction("H1", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H1, DefaultLabels.HEADING)));
setTagAction("H2", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H2, DefaultLabels.HEADING)));
setTagAction("H3", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H3, DefaultLabels.HEADING)));
origin: pvdlg/boilerpipe

    new LabelAction(DefaultLabels.LI)));
setTagAction("H1", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H1, DefaultLabels.HEADING)));
setTagAction("H2", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H2, DefaultLabels.HEADING)));
setTagAction("H3", new CommonTagActions.BlockTagLabelAction(
    new LabelAction(DefaultLabels.H3, DefaultLabels.HEADING)));
de.l3s.boilerpipe.labelsLabelAction

Javadoc

Helps adding labels to TextBlocks.

Most used methods

  • addLabelsTo
  • addTo
  • <init>

Popular in Java

  • Running tasks concurrently on multiple threads
  • getResourceAsStream (ClassLoader)
  • getContentResolver (Context)
  • onCreateOptionsMenu (Activity)
  • 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
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Top PhpStorm plugins
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