Examples of ArjStreamFactory


Examples of org.apache.ant.compress.util.ArjStreamFactory

     * Create a new scanner.
     * @return the created scanner.
     */
    protected ArchiveScanner newArchiveScanner() {
        CommonsCompressArchiveScanner cs =
            new CommonsCompressArchiveScanner(new ArjStreamFactory(),
                                              new CommonsCompressArchiveScanner.ResourceBuilder() {
                public Resource buildResource(Resource archive, String encoding,
                                              ArchiveEntry entry) {
                    return new ArjResource(archive, encoding, (ArjArchiveEntry) entry);
                }
View Full Code Here

Examples of org.apache.ant.compress.util.ArjStreamFactory

    /**
     * Default constructor.
     */
    public ArjResource() {
        super(new ArjStreamFactory(), "arj");
    }
View Full Code Here

Examples of org.apache.ant.compress.util.ArjStreamFactory

     * @param a the archive as File.
     * @param enc the encoding used for filenames.
     * @param e the ArjEntry.
     */
    public ArjResource(File a, String enc, ArjArchiveEntry e) {
        super(new ArjStreamFactory(), "arj", a, e);
        setEncoding(enc);
        setEntry(e);
    }
View Full Code Here

Examples of org.apache.ant.compress.util.ArjStreamFactory

     * @param a the archive as Resource.
     * @param enc the encoding used for filenames.
     * @param e the ArjEntry.
     */
    public ArjResource(Resource a, String enc, ArjArchiveEntry e) {
        super(new ArjStreamFactory(), "arj", a, e);
        setEncoding(enc);
        setEntry(e);
    }
View Full Code Here

Examples of org.apache.ant.compress.util.ArjStreamFactory

* Unarj a file.
* @since Apache Compress Antlib 1.3
*/
public class Unarj extends ExpandBase {
    public Unarj() {
        super(new ArjStreamFactory());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.