ProGuard

proguard
Class DataEntryWriterFactory

java.lang.Object
  extended byproguard.DataEntryWriterFactory

public class DataEntryWriterFactory
extends Object

This class can create DataEntryWriter instances based on class paths. The writers will wrap the output in the proper jars, wars, ears, and zips.


Constructor Summary
DataEntryWriterFactory()
           
 
Method Summary
static DataEntryWriter createDataEntryWriter(ClassPath classPath, int fromIndex, int toIndex)
          Creates a DataEntryWriter that can write to the given class path entries.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataEntryWriterFactory

public DataEntryWriterFactory()
Method Detail

createDataEntryWriter

public static DataEntryWriter createDataEntryWriter(ClassPath classPath,
                                                    int fromIndex,
                                                    int toIndex)
Creates a DataEntryWriter that can write to the given class path entries.

Parameters:
classPath - the output class path.
fromIndex - the start index in the class path.
toIndex - the end index in the class path.
Returns:
a DataEntryWriter for writing to the given class path entries.

ProGuard