Sha256: 9bfc12d8e193380e77a6f35354c68da067c0cc25ee31fbab0b21010b95d61d12

Contents?: true

Size: 1.37 KB

Versions: 8

Compression:

Stored size: 1.37 KB

Contents

/*

   Copyright 2001  The Apache Software Foundation 

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */
package org.apache.batik.svggen.font.table;

import java.io.IOException;
import org.apache.batik.svggen.font.*;

/**
 * @version $Id: CmapFormat2.java,v 1.4 2004/09/01 09:35:23 deweese Exp $
 * @author <a href="mailto:david@steadystate.co.uk">David Schweinsberg</a>
 */
public class CmapFormat2 extends CmapFormat {

    private final short[] subHeaderKeys = new short[256];
    private int[] subHeaders1;
    private int[] subHeaders2;
    private short[] glyphIndexArray;

    protected CmapFormat2(RandomAccessFileEmulator raf) throws IOException {
        super(raf);
        format = 2;
    }

    @Override
    public int getFirst() { return 0; }
    @Override
    public int getLast()  { return 0; }
    
    @Override
    public int mapCharCode(int charCode) {
        return 0;
    }
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
geomerative-1.1.0-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-1.0.2-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-0.4.3-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-0.4.2-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-0.4.0-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-0.3.2-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-0.2.0-java src/org/apache/batik/svggen/font/table/CmapFormat2.java
geomerative-0.1.0-java src/org/apache/batik/svggen/font/table/CmapFormat2.java