~ubuntu-branches/ubuntu/vivid/doxia/vivid-proposed

« back to all changes in this revision

Viewing changes to doxia-modules/doxia-module-rtf/src/main/java/org/apache/maven/doxia/module/rtf/MonospaceItalic.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-10-08 14:20:22 UTC
  • mfrom: (2.3.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091008142022-f6ccxganfr2tbaig
Tags: 1.1-3build1
Upload to karmic, avoiding new version from unstable. LP: #443292.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * under the License.
20
20
 */
21
21
 
 
22
/**
 
23
 * @version $Id: MonospaceItalic.java 638290 2008-03-18 09:45:22Z bentmann $
 
24
 */
22
25
class MonospaceItalic
23
26
    extends FontMetrics
24
27
{
25
 
 
26
 
    public static final CharMetrics[] metrics = {new CharMetrics( 600, 0, 0, 0, 0, 0 ),
 
28
    static final CharMetrics[] metrics = {new CharMetrics( 600, 0, 0, 0, 0, 0 ),
27
29
        new CharMetrics( 600, 0, 0, 0, 0, 0 ), new CharMetrics( 600, 0, 0, 0, 0, 0 ),
28
30
        new CharMetrics( 600, 0, 0, 0, 0, 0 ), new CharMetrics( 600, 0, 0, 0, 0, 0 ),
29
31
        new CharMetrics( 600, 0, 0, 0, 0, 0 ), new CharMetrics( 600, 0, 0, 0, 0, 0 ),
153
155
        new CharMetrics( 600, 0, -4, -157, 683, 672 ), new CharMetrics( 600, 0, -24, -157, 605, 629 ),
154
156
        new CharMetrics( 600, 0, -4, -157, 683, 595 )};
155
157
 
156
 
    public MonospaceItalic()
 
158
    MonospaceItalic()
157
159
    {
158
160
        super( true, 629, -157, new CharMetrics( 0, 0, -28, -250, 742, 805 ), metrics );
159
161
    }
160
 
 
161
162
}