congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
MutableScopedDataSet
Code IndexAdd Tabnine to your IDE (free)

How to use
MutableScopedDataSet
in
com.vladsch.flexmark.util.options

Best Java code snippets using com.vladsch.flexmark.util.options.MutableScopedDataSet (Showing top 5 results out of 315)

origin: vsch/flexmark-java

@Override
public Collection<DataKey> keySet() {
  if (parent != null) {
    ArrayList<DataKey> all = new ArrayList<DataKey>();
    all.addAll(super.keySet());
    for (DataKey key : parent.keySet()) {
      if (!contains(key)) {
        all.add(key);
      }
    }
    return all;
  } else {
    return super.keySet();
  }
}
origin: vsch/flexmark-java

public CoreNodeDocxRenderer(DataHolder options) {
  referenceRepository = getRepository(options);
  recheckUndefinedReferences = DocxRenderer.RECHECK_UNDEFINED_REFERENCES.getFrom(options);
  linebreakOnInlineHtmlBr = DocxRenderer.LINEBREAK_ON_INLINE_HTML_BR.getFrom(options);
  tableCaptionToParagraph = DocxRenderer.TABLE_CAPTION_TO_PARAGRAPH.getFrom(options);
  tableCaptionBeforeTable = DocxRenderer.TABLE_CAPTION_BEFORE_TABLE.getFrom(options);
  tablePreferredWidthPct = DocxRenderer.TABLE_PREFERRED_WIDTH_PCT.getFrom(options);
  tableLeftIndent = DocxRenderer.TABLE_LEFT_INDENT.getFrom(options);
  tableStyle = DocxRenderer.TABLE_STYLE.getFrom(options);
  repositoryNodesDone = false;
  this.options = new DocxRendererOptions(options);
  listOptions = ListOptions.getFrom(options);
  footnoteIDs = new HashMap<Node, BigInteger>();
  lastTocBlock = null;
  ordinal = 0;
  final MutableScopedDataSet options1 = new MutableScopedDataSet(options);
  options1.set(EmojiExtension.ROOT_IMAGE_PATH, DocxRenderer.DOC_EMOJI_ROOT_IMAGE_PATH.getFrom(options));
  emojiOptions = new EmojiOptions(options1);
}
origin: vsch/flexmark-java

@Override
public Map<DataKey, Object> getAll() {
  if (parent != null) {
    HashMap<DataKey, Object> all = new HashMap<DataKey, Object>();
    all.putAll(super.getAll());
    for (DataKey key : parent.keySet()) {
      if (!contains(key)) {
        all.put(key, parent.get(key));
      }
    }
    return all;
  } else {
    return super.getAll();
  }
}
origin: com.vladsch.flexmark/flexmark-util

@Override
public Collection<DataKey> keySet() {
  if (parent != null) {
    ArrayList<DataKey> all = new ArrayList<DataKey>();
    all.addAll(super.keySet());
    for (DataKey key : parent.keySet()) {
      if (!contains(key)) {
        all.add(key);
      }
    }
    return all;
  } else {
    return super.keySet();
  }
}
origin: com.vladsch.flexmark/flexmark-util

@Override
public Map<DataKey, Object> getAll() {
  if (parent != null) {
    HashMap<DataKey, Object> all = new HashMap<DataKey, Object>();
    all.putAll(super.getAll());
    for (DataKey key : parent.keySet()) {
      if (!contains(key)) {
        all.put(key, parent.get(key));
      }
    }
    return all;
  } else {
    return super.getAll();
  }
}
com.vladsch.flexmark.util.optionsMutableScopedDataSet

Most used methods

  • <init>
  • contains
  • set

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getResourceAsStream (ClassLoader)
  • setScale (BigDecimal)
  • getExternalFilesDir (Context)
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • Permission (java.security)
    Legacy security code; do not use.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • JComboBox (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • 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