KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > batik > gvt > text > ConcreteTextLayoutFactory


1 /*
2
3    Copyright 2001,2003 The Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17  */

18 package org.apache.batik.gvt.text;
19
20 import java.awt.font.FontRenderContext JavaDoc;
21 import java.awt.geom.Point2D JavaDoc;
22 import java.text.AttributedCharacterIterator JavaDoc;
23
24 /**
25  * Factory instance that returns TextSpanLayouts appropriate to
26  * AttributedCharacterIterator instances.
27  *
28  * @see org.apache.batik.gvt.text.TextSpanLayout
29  * @author <a HREF="mailto:bill.haneman@ireland.sun.com">Bill Haneman</a>
30  * @version $Id: ConcreteTextLayoutFactory.java,v 1.16 2005/03/27 08:58:35 cam Exp $
31  */

32 public class ConcreteTextLayoutFactory implements TextLayoutFactory {
33
34     /**
35      * Returns an instance of TextSpanLayout suitable for rendering the
36      * AttributedCharacterIterator.
37      *
38      * @param aci The character iterator to be laid out
39      * @param charMap Indicates how chars in aci map to original
40      * text char array.
41      * @param offset The offset position for the text layout.
42      * @param frc The font render context to use when creating the text layout.
43      */

44     public TextSpanLayout createTextLayout(AttributedCharacterIterator JavaDoc aci,
45                                            int [] charMap,
46                                            Point2D JavaDoc offset,
47                                            FontRenderContext JavaDoc frc) {
48         return new GlyphLayout(aci, charMap, offset, frc);
49     }
50 }
51
52
53
Popular Tags