Package org.eclipse.jgit.attributes
Class AttributesNode
- java.lang.Object
-
- org.eclipse.jgit.attributes.AttributesNode
-
- Direct Known Subclasses:
DfsRepository.EmptyAttributesNodeProvider.EmptyAttributesNode
,DirCacheIterator.LazyLoadingAttributesNode
,GlobalAttributesNode
,InfoAttributesNode
,WorkingTreeIterator.PerDirectoryAttributesNode
public class AttributesNode extends java.lang.Object
Represents a bundle of attributes inherited from a base directory. This class is not thread safe, it maintains state about the last match.- Since:
- 3.7
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<AttributesRule>
rules
The rules that have been parsed into this node.
-
Constructor Summary
Constructors Constructor Description AttributesNode()
Create an empty ignore node with no rules.AttributesNode(java.util.List<AttributesRule> rules)
Create an ignore node with given rules.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static java.io.BufferedReader
asReader(java.io.InputStream in)
java.util.List<AttributesRule>
getRules()
Getter for the fieldrules
.void
parse(java.io.InputStream in)
Parse files according to gitattribute standards.
-
-
-
Field Detail
-
rules
private final java.util.List<AttributesRule> rules
The rules that have been parsed into this node.
-
-
Constructor Detail
-
AttributesNode
public AttributesNode()
Create an empty ignore node with no rules.
-
AttributesNode
public AttributesNode(java.util.List<AttributesRule> rules)
Create an ignore node with given rules.- Parameters:
rules
- list of rules.
-
-
Method Detail
-
parse
public void parse(java.io.InputStream in) throws java.io.IOException
Parse files according to gitattribute standards.- Parameters:
in
- input stream holding the standard ignore format. The caller is responsible for closing the stream.- Throws:
java.io.IOException
- Error thrown when reading an ignore file.
-
asReader
private static java.io.BufferedReader asReader(java.io.InputStream in)
-
getRules
public java.util.List<AttributesRule> getRules()
Getter for the fieldrules
.- Returns:
- list of all ignore rules held by this node
-
-