public abstract class Content
extends java.lang.Object
| Constructor and Description |
|---|
Content()
Constructs an instance of the simple line or section in INI file.
|
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
notEmpty()
Checks if the content is empty or not.
|
abstract void |
write(java.io.PrintWriter pw)
Writes the content to the file via Writer object provided.
|
public Content()
public abstract void write(java.io.PrintWriter pw)
pw - The writer will be used to save content to the file.public abstract boolean notEmpty()
true in case of not emptry, false otherwise.