org.apache.felix.utils.properties
Class Properties.PropertiesWriter
java.lang.Object
java.io.Writer
java.io.FilterWriter
org.apache.felix.utils.properties.Properties.PropertiesWriter
- All Implemented Interfaces:
- java.io.Closeable, java.io.Flushable, java.lang.Appendable
- Enclosing class:
- Properties
public static class Properties.PropertiesWriter
- extends java.io.FilterWriter
This class is used to write properties lines.
Fields inherited from class java.io.FilterWriter |
out |
Fields inherited from class java.io.Writer |
lock |
Method Summary |
void |
writeln(java.lang.String s)
Helper method for writing a line with the platform specific line
ending. |
void |
writeProperty(java.lang.String key,
java.lang.String value)
Writes the given property and its value. |
Methods inherited from class java.io.FilterWriter |
close, flush, write, write, write |
Methods inherited from class java.io.Writer |
append, append, append, write, write |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Properties.PropertiesWriter
public Properties.PropertiesWriter(java.io.Writer writer)
- Constructor.
- Parameters:
writer
- a Writer object providing the underlying stream
writeProperty
public void writeProperty(java.lang.String key,
java.lang.String value)
throws java.io.IOException
- Writes the given property and its value.
- Parameters:
key
- the property keyvalue
- the property value
- Throws:
java.io.IOException
- if an error occurs
writeln
public void writeln(java.lang.String s)
throws java.io.IOException
- Helper method for writing a line with the platform specific line
ending.
- Parameters:
s
- the content of the line (may be null)
- Throws:
java.io.IOException
- if an error occurs
Copyright © 2011. All Rights Reserved.