Package com.yworks.yguard.ant
Class PatternMatchedClassesSection
- java.lang.Object
-
- com.yworks.yguard.ant.PatternMatchedClassesSection
-
- Direct Known Subclasses:
AttributesSection,ClassSection,FieldSection,LineNumberTableSection,MethodSection,SourceFileSection
public abstract class PatternMatchedClassesSection extends java.lang.ObjectUsed as a super class for ant's handling of the elements which can contain apatternsetchild element.
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanallowMatchAllPatternSetThe Allow match all pattern set.protected java.util.ListpatternSetsThe Pattern sets.protected java.util.MappropertiesThe Properties.
-
Constructor Summary
Constructors Constructor Description PatternMatchedClassesSection()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaddConfiguredPatternSet(org.apache.tools.ant.types.PatternSet ps)Add configured pattern set.voidaddConfiguredProperty(Property p)Add configured property.abstract voidaddEntries(java.util.Collection entries, java.lang.String matchedClass)Add entries.voidaddEntries(java.util.Collection entries, org.apache.tools.ant.types.ZipFileSet zf)Add entries.java.util.ListgetPatternSets()Gets pattern sets.
-
-
-
Method Detail
-
addConfiguredPatternSet
public void addConfiguredPatternSet(org.apache.tools.ant.types.PatternSet ps)
Add configured pattern set.- Parameters:
ps- the ps
-
addConfiguredProperty
public void addConfiguredProperty(Property p)
Add configured property.- Parameters:
p- the p
-
getPatternSets
public java.util.List getPatternSets()
Gets pattern sets.- Returns:
- the pattern sets
-
addEntries
public void addEntries(java.util.Collection entries, org.apache.tools.ant.types.ZipFileSet zf) throws java.io.IOExceptionAdd entries.- Parameters:
entries- the entrieszf- the zf- Throws:
java.io.IOException- the io exception
-
addEntries
public abstract void addEntries(java.util.Collection entries, java.lang.String matchedClass)Add entries.- Parameters:
entries- the entriesmatchedClass- the matched class
-
-