Package ikvm.internal

Examples of ikvm.internal.NotYetImplementedError


     * Returns destination that this Graphics renders to.  This could be
     * either an Image or a Component; subclasses of SurfaceData are
     * responsible for returning the appropriate object.
     */
    public Object getDestination() {
        throw new NotYetImplementedError();
    }
View Full Code Here


    /**
     * {@inheritDoc}
     */
    @Override
    void getGlyphImageBounds(int glyphcode, Float pt, Rectangle result){
        throw new NotYetImplementedError();
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    @Override
    long getGlyphImagePtr(int glyphcode){
        throw new NotYetImplementedError();
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    @Override
    void getGlyphImagePtrs(int[] glyphCodes, long[] images, int len){
        throw new NotYetImplementedError();
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    @Override
    GeneralPath getGlyphOutline(int glyphCode, float x, float y){
        throw new NotYetImplementedError();
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    @Override
    java.awt.geom.Rectangle2D.Float getGlyphOutlineBounds(int glyphCode){
        throw new NotYetImplementedError();
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    @Override
    GeneralPath getGlyphVectorOutline(int[] glyphs, float x, float y){
        throw new NotYetImplementedError();
    }
View Full Code Here

    /**
     * {@inheritDoc}
     */
    @Override
    public int getNumGlyphs(){
        throw new NotYetImplementedError();
    }
View Full Code Here

*/
public class CompositeFont extends Font2D{

    @Override
    public int getStyle(){
        throw new NotYetImplementedError();
    }
View Full Code Here

        throw new NotYetImplementedError();
    }

    @Override
    public Font createNetFont(java.awt.Font font){
        throw new NotYetImplementedError();
    }
View Full Code Here

TOP

Related Classes of ikvm.internal.NotYetImplementedError

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.