Methods Summary |
---|
public void | execute()
if (isEnabled ())
{
String [] files = getDataPath (true);
if ((files == null) || (files.length == 0))
throw (BuildException) newBuildException (getTaskName ()
+ ": no valid input data files have been specified", location).fillInStackTrace ();
final MergeProcessor processor = MergeProcessor.create ();
processor.setDataPath (files); files = null;
processor.setSessionOutFile (m_outFile != null ? m_outFile.getAbsolutePath () : null);
processor.setPropertyOverrides (getTaskSettings ());
processor.run ();
}
|
public void | setFile(java.io.File file)
if (m_outFile != null)
throw (BuildException) newBuildException (getTaskName ()
+ ": merge data file attribute already set", location).fillInStackTrace ();
m_outFile = file;
|
public void | setMergefile(java.io.File file)
if (m_outFile != null)
throw (BuildException) newBuildException (getTaskName ()
+ ": merge data file attribute already set", location).fillInStackTrace ();
m_outFile = file;
|
public void | setOutfile(java.io.File file)
if (m_outFile != null)
throw (BuildException) newBuildException (getTaskName ()
+ ": merge data file attribute already set", location).fillInStackTrace ();
m_outFile = file;
|
public void | setTofile(java.io.File file)
if (m_outFile != null)
throw (BuildException) newBuildException (getTaskName ()
+ ": merge data file attribute already set", location).fillInStackTrace ();
m_outFile = file;
|