Uses of Class
org.eclipse.jgit.lib.Config

Packages that use Config
org.eclipse.jgit.lib   
org.eclipse.jgit.storage.dfs   
org.eclipse.jgit.storage.file   
org.eclipse.jgit.storage.pack   
org.eclipse.jgit.transport   
org.eclipse.jgit.util   
 

Uses of Config in org.eclipse.jgit.lib
 

Subclasses of Config in org.eclipse.jgit.lib
 class BlobBasedConfig
          Configuration file based on the blobs stored in the repository.
 class StoredConfig
          Persistent configuration that can be stored and loaded from a location.
 

Methods in org.eclipse.jgit.lib that return Config
protected  Config BaseRepositoryBuilder.getConfig()
          Get the cached repository configuration, loading if not yet available.
protected  Config BaseRepositoryBuilder.loadConfig()
          Parse and load the repository specific configuration.
 

Methods in org.eclipse.jgit.lib with parameters of type Config
 T Config.SectionParser.parse(Config cfg)
          Create a model object from a configuration.
 

Constructors in org.eclipse.jgit.lib with parameters of type Config
BlobBasedConfig(Config base, byte[] blob)
          Parse a configuration from a byte array.
BlobBasedConfig(Config base, Repository db, AnyObjectId objectId)
          Load a configuration file from a blob.
BlobBasedConfig(Config base, Repository db, AnyObjectId treeish, String path)
          Load a configuration file from a blob stored in a specific commit.
BranchConfig(Config config, String branchName)
          Create a new branch config, which will read configuration from config about specified branch.
Config(Config defaultConfig)
          Create an empty configuration with a fallback for missing keys.
StoredConfig(Config defaultConfig)
          Create an empty configuration with a fallback for missing keys.
 

Uses of Config in org.eclipse.jgit.storage.dfs
 

Methods in org.eclipse.jgit.storage.dfs with parameters of type Config
 DfsBlockCacheConfig DfsBlockCacheConfig.fromConfig(Config rc)
          Update properties by setting fields from the configuration.
 DfsReaderOptions DfsReaderOptions.fromConfig(Config rc)
          Update properties by setting fields from the configuration.
 

Uses of Config in org.eclipse.jgit.storage.file
 

Subclasses of Config in org.eclipse.jgit.storage.file
 class FileBasedConfig
          The configuration file that is stored in the file of the file system.
 

Methods in org.eclipse.jgit.storage.file with parameters of type Config
 void WindowCacheConfig.fromConfig(Config rc)
          Update properties by setting fields from the configuration.
 

Constructors in org.eclipse.jgit.storage.file with parameters of type Config
FileBasedConfig(Config base, File cfgLocation, FS fs)
          The constructor
ObjectDirectory(Config cfg, File dir, File[] alternatePaths, FS fs)
          Initialize a reference to an on-disk object directory.
 

Uses of Config in org.eclipse.jgit.storage.pack
 

Methods in org.eclipse.jgit.storage.pack with parameters of type Config
 void PackConfig.fromConfig(Config rc)
          Update properties by setting fields from the configuration.
 

Constructors in org.eclipse.jgit.storage.pack with parameters of type Config
PackConfig(Config cfg)
          Create a configuration honoring settings in a Config.
 

Uses of Config in org.eclipse.jgit.transport
 

Methods in org.eclipse.jgit.transport with parameters of type Config
static List<RemoteConfig> RemoteConfig.getAllRemoteConfigs(Config rc)
          Parse all remote blocks in an existing configuration file, looking for remotes configuration.
 void RemoteConfig.update(Config rc)
          Update this remote's definition within the configuration.
 

Constructors in org.eclipse.jgit.transport with parameters of type Config
RemoteConfig(Config rc, String remoteName)
          Parse a remote block from an existing configuration file.
 

Uses of Config in org.eclipse.jgit.util
 

Methods in org.eclipse.jgit.util with parameters of type Config
abstract  FileBasedConfig SystemReader.openSystemConfig(Config parent, FS fs)
           
abstract  FileBasedConfig SystemReader.openUserConfig(Config parent, FS fs)
           
 



Copyright © 2012. All Rights Reserved.