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

org.simpleframework.xml.stream.Style 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
/*
 * Style.java July 2008
 *
 * Copyright (C) 2008, 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 Style interface is used to represent an XML style
 * that can be applied to a serialized object. A style can be used to
 * modify the element and attribute names for the generated document.
 * Styles can be used to generate hyphenated or camel case XML.
 * 
 * 
 *    <example-element>
 *        <child-element example-attribute='example'>
 *           <inner-element>example</inner-element>
 *        </child-element>
 *     </example-element>
 *     
 * 
* Above the hyphenated XML elements and attributes can be generated * from a style implementation. Styles enable the same objects to be * serialized in different ways, generating different styles of XML * without having to modify the class schema for that object. * * @author Niall Gallagher */ public interface Style { /** * This is used to generate the XML element representation of * the specified name. Element names should ensure to keep the * uniqueness of the name such that two different names will * be styled in to two different strings. * * @param name this is the element name that is to be styled * * @return this returns the styled name of the XML element */ public String getElement(String name); /** * This is used to generate the XML attribute representation of * the specified name. Attribute names should ensure to keep the * uniqueness of the name such that two different names will * be styled in to two different strings. * * @param name this is the attribute name that is to be styled * * @return this returns the styled name of the XML attribute */ public String getAttribute(String name); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy