All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xmlcalabash.util.StderrResource Maven / Gradle / Ivy

The newest version!
package com.xmlcalabash.util;

import java.io.OutputStream;

import org.apache.tools.ant.types.Resource;

public class StderrResource extends Resource {
    public StderrResource() {
        super("", true, 0, false);
    }

    @Override
    public OutputStream getOutputStream() {
        return System.err;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy