Package org.nuiton.eugene.writer
Class ChainedFileWriterEntry
- java.lang.Object
-
- org.nuiton.eugene.writer.ChainedFileWriterEntry
-
public class ChainedFileWriterEntry extends Object
Definition of of the chained writer entry. Created: 04 mars. 2010- Since:
- 2.0.0
- Author:
- Tony Chemit - dev@tchemit.fr
-
-
Field Summary
Fields Modifier and Type Field Description protected StringincludePatterninclude pattern of entryprotected StringinputPathinput path of entry (can be a directory or a classpath entry)protected booleanuseClassPathFlag to knwon if resources should be searched in classpath.
-
Constructor Summary
Constructors Constructor Description ChainedFileWriterEntry(String inputPath, String includePattern)ChainedFileWriterEntry(String inputPath, String includePattern, boolean useClassPath)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetIncludePattern()StringgetInputPath()booleanisUseClassPath()StringtoString()
-
-
-
Field Detail
-
inputPath
protected String inputPath
input path of entry (can be a directory or a classpath entry)
-
includePattern
protected String includePattern
include pattern of entry
-
useClassPath
protected boolean useClassPath
Flag to knwon if resources should be searched in classpath. If sets totrue, then theinputPathis the absolute path where to seek resources in classpath.- Since:
- 2.1.3
-
-