Example usage for org.eclipse.jgit.storage.file FileBasedConfig subclass-usage

List of usage examples for org.eclipse.jgit.storage.file FileBasedConfig subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jgit.storage.file FileBasedConfig subclass-usage.

Usage

From source file com.google.gerrit.acceptance.MergeableFileBasedConfig.java

/**
 * A file based Config that can merge another Config instance.
 */
public class MergeableFileBasedConfig extends FileBasedConfig {
    public MergeableFileBasedConfig(File cfgLocation, FS fs) {
        super(cfgLocation, fs);

From source file net.polydawn.mdm.jgit.FilteredConfig.java

public class FilteredConfig extends FileBasedConfig {
    // I really don't like that this extends FileBasedConfig, but SystemReader insists.
    public FilteredConfig(Config original, Config whitelist) {
        super(null, null);
        this.original = original;
        this.whitelist = whitelist;