01: /*
02: * Copyright (C) 2006, 2007 XStream Committers.
03: * All rights reserved.
04: *
05: * The software in this package is published under the terms of the BSD
06: * style license a copy of which has been included with this distribution in
07: * the LICENSE.txt file.
08: *
09: * Created on 25. March 2006 by Joerg Schaible
10: */
11: package com.thoughtworks.xstream.converters.extended;
12:
13: import com.thoughtworks.xstream.converters.reflection.AbstractAttributedCharacterIteratorAttributeConverter;
14:
15: import java.awt.font.TextAttribute;
16:
17: /**
18: * A converter for {@link TextAttribute} constants.
19: *
20: * @author Jörg Schaible
21: * @since 1.2
22: */
23: public class TextAttributeConverter extends
24: AbstractAttributedCharacterIteratorAttributeConverter {
25:
26: /**
27: * Constructs a TextAttributeConverter.
28: *
29: * @since 1.2.2
30: */
31: public TextAttributeConverter() {
32: super (TextAttribute.class);
33: }
34: }
|