com.aspectran.utils.apon.AponWriterCloseable Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2024 The Aspectran Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aspectran.utils.apon;
import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import java.io.Writer;
/**
* Writes an APON object to an output source.
* By default, the indentation string is " " (two blanks)
* Useful with Java 7 for example :
*
{@code
* try(AponWriterCloseable aponWriter = AponWriterCloseable(writer)) {
* ....
* }
* }
*/
public class AponWriterCloseable extends AponWriter implements Closeable {
/**
* Instantiates a new AponWriter.
* Pretty printing is enabled by default, and the indent string is
* set to " " (two spaces).
* @param file a File object to write to
* @throws IOException if an I/O error occurs
*/
public AponWriterCloseable(File file) throws IOException {
super(file);
}
/**
* Instantiates a new AponWriter.
* Pretty printing is enabled by default, and the indent string is
* set to " " (two spaces).
* @param writer the character-output stream
*/
public AponWriterCloseable(Writer writer) {
super(writer);
}
}