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

org.simpleframework.xml.stream.Format Maven / Gradle / Ivy

Go to download

Simple is a high performance XML serialization and configuration framework for Java

There is a newer version: 2.7.1
Show newest version
/*
 * Format.java July 2006
 *
 * Copyright (C) 2006, Niall Gallagher 
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General 
 * Public License along with this library; if not, write to the 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
 * Boston, MA  02111-1307  USA
 */

package org.simpleframework.xml.stream;

/**
 * The Format object is used to provide information on 
 * how a generated XML document should be structured. The information
 * provided tells the formatter whether an XML prolog is required and
 * the number of spaces that should be used for indenting. The prolog
 * specified will be written directly before the XML document.
 * 

* Should a Format be created with an indent of zero or * less then no indentation is done, and the generated XML will be on * the same line. The prolog can contain any legal XML heading, which * can domain a DTD declaration and XML comments if required. * * @author Niall Gallagher */ public class Format { /** * Represents the prolog that appears in the generated XML. */ private String prolog; /** * This is the style that is used internally by the format. */ private Style style; /** * Represents the indent size to use for the generated XML. */ private int indent; /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses an indent size of three. */ public Format() { this(3); } /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses the specified indent * size and a null prolog, which means no prolog is generated. * * @param indent this is the number of spaces used in the indent */ public Format(int indent) { this(indent, null, null); } /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses the specified prolog * that is to be inserted at the start of the XML document. * * @param prolog this is the prolog for the generated XML document */ public Format(String prolog) { this(3, prolog); } /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses the specified indent * size and the text to use in the generated prolog. * * @param indent this is the number of spaces used in the indent * @param prolog this is the prolog for the generated XML document */ public Format(int indent, String prolog) { this(indent, prolog, null); } /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses the specified style * to style the attributes and elements of the XML document. * * @param style this is the style to apply to the format object */ public Format(Style style) { this(3, null, style); } /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses the specified indent * size and the style provided to style the XML document. * * @param indent this is the number of spaces used in the indent * @param style this is the style to apply to the format object */ public Format(int indent, Style style) { this(indent, null, style); } /** * Constructor for the Format object. This creates an * object that is used to describe how the formatter should create * the XML document. This constructor uses the specified indent * size and the text to use in the generated prolog. * * @param indent this is the number of spaces used in the indent * @param prolog this is the prolog for the generated XML document * @param style this is the style to apply to the format object */ public Format(int indent, String prolog, Style style) { this.prolog = prolog; this.indent = indent; this.style = style; } /** * This method returns the size of the indent to use for the XML * generated. The indent size represents the number of spaces that * are used for the indent, and indent of zero means no indenting. * * @return returns the number of spaces to used for indenting */ public int getIndent() { return indent; } /** * This method returns the prolog that is to be used at the start * of the generated XML document. This allows a DTD or a version * to be specified at the start of a document. If this returns * null then no prolog is written to the start of the XML document. * * @return this returns the prolog for the start of the document */ public String getProlog() { return prolog; } /** * This is used to acquire the Style for the format. * If no style has been set a default style is used, which does * not modify the attributes and elements that are used to build * the resulting XML document. * * @return this returns the style used for this format object */ public Style getStyle() { return style; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy