
org.swixml.converters.FontConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swixml Show documentation
Show all versions of swixml Show documentation
GUI generating engine for Java applications
The newest version!
/*--
$Id: FontConverter.java,v 1.1 2004/03/01 07:55:59 wolfpaulus Exp $
Copyright (C) 2003-2007 Wolf Paulus.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions, and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the disclaimer that follows
these conditions in the documentation and/or other materials provided
with the distribution.
3. The end-user documentation included with the redistribution,
if any, must include the following acknowledgment:
"This product includes software developed by the
SWIXML Project (http://www.swixml.org/)."
Alternately, this acknowledgment may appear in the software itself,
if and wherever such third-party acknowledgments normally appear.
4. The name "Swixml" must not be used to endorse or promote products
derived from this software without prior written permission. For
written permission, please contact
5. Products derived from this software may not be called "Swixml",
nor may "Swixml" appear in their name, without prior written
permission from the Swixml Project Management.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE SWIXML PROJECT OR ITS
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Swixml Project and was originally
created by Wolf Paulus . For more information
on the Swixml Project, please see .
*/
package org.swixml.converters;
import java.awt.Font;
import java.awt.GraphicsEnvironment;
import org.swixml.SwingEngine;
import org.swixml.dom.Attribute;
/**
* The FontConverter class defines / describes
*
* @author Wolf Paulus
* @version $Revision: 1.1 $
* @since swixml 1.0
*/
public class FontConverter extends AbstractConverter {
/**
* converter's return type
*/
public static final Class TEMPLATE = Font.class;
/**
* Convert the value of the given Attribute
object into an output object of the
* specified type.
* Returns the Font
that the str
* argument describes.
* To ensure that this method returns the desired Font,
* format the str
parameter in
* one of two ways:
*
* "fontfamilyname-style-pointsize" or
* "fontfamilyname style pointsize"
* in which style is one of the three
* case-insensitive strings:
* "BOLD"
, "BOLDITALIC"
, or
* "ITALIC"
, and pointsize is a decimal
* representation of the point size.
* For example, if you want a font that is Arial, bold, and
* a point size of 18, you would call this method with:
* "Arial-BOLD-18".
*
* The default size is 12 and the default style is PLAIN.
* If you don't specify a valid size, the returned
* Font
has a size of 12. If you don't specify
* a valid style, the returned Font has a style of PLAIN.
* If you do not provide a valid font family name in
* the str
argument, this method still returns
* a valid font with a family name of "dialog".
* To determine what font family names are available on
* your system, use the
* {@link GraphicsEnvironment#getAvailableFontFamilyNames()} method.
* If str
is null
, a new Font
* is returned with the family name "dialog", a size of 12 and a
* PLAIN style.
* If str
is null
,
* a new Font
is returned with the name "dialog", a
* size of 12 and a PLAIN style.
*
* @param type Class
Data type to which the Attribute's value should be converted
* @param attr Attribute
the attribute, providing the value to be converted.
* @return the Font
object that str
* describes, or a new default Font
if
* str
is null
.
*/
@Override
public Font convert( String value, Class> type, Attribute attr, SwingEngine> engine) throws Exception {
return Font.decode(value);
}
/**
* A Converters
conversTo method informs about the Class type the converter
* is returning when its convert
method is called
*
* @return Class
- the Class the converter is returning when its convert method is called
*/
public Class convertsTo() {
return TEMPLATE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy