| java.io.ByteArrayOutputStream org.apache.tools.ant.util.PropertyOutputStream
PropertyOutputStream | public class PropertyOutputStream extends ByteArrayOutputStream (Code) | | Exception thrown when an attempt is made to get an OutputStream
from an immutable Resource.
since: Ant 1.7 |
Constructor Summary | |
public | PropertyOutputStream(Project p, String s) Construct a new PropertyOutputStream for the specified Project
and property name, trimming the property value. | public | PropertyOutputStream(Project p, String s, boolean b) Construct a new PropertyOutputStream for
the specified Project, property name, and trim mode. |
Method Summary | |
public void | close() Close the PropertyOutputStream, storing the property. |
PropertyOutputStream | public PropertyOutputStream(Project p, String s)(Code) | | Construct a new PropertyOutputStream for the specified Project
and property name, trimming the property value.
Parameters: p - the associated Ant Project. Parameters: s - the String property name. |
PropertyOutputStream | public PropertyOutputStream(Project p, String s, boolean b)(Code) | | Construct a new PropertyOutputStream for
the specified Project, property name, and trim mode.
Parameters: p - the associated Ant Project. Parameters: s - the String property name. Parameters: b - the boolean trim mode. |
close | public void close()(Code) | | Close the PropertyOutputStream, storing the property.
|
|
|