javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/HTML5GraphicsEnvironment.java
author toni.epple@eppleton.de
Fri, 17 May 2013 14:09:38 +0200
branchcanvas
changeset 1120 b88c003d73e4
permissions -rw-r--r--
Added GraphicsEnvironment Service
     1 /**
     2  * Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach
     3  * <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify it under
     6  * the terms of the GNU General Public License as published by the Free Software
     7  * Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    11  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
    12  * details.
    13  *
    14  * You should have received a copy of the GNU General Public License along with
    15  * this program. Look for COPYING file in the top folder. If not, see
    16  * http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage.api;
    19 
    20 import net.java.html.canvas.GraphicsEnvironment;
    21 import net.java.html.canvas.Image;
    22 import net.java.html.canvas.LinearGradient;
    23 import net.java.html.canvas.Pattern;
    24 import net.java.html.canvas.RadialGradient;
    25 import net.java.html.canvas.TextMetrics;
    26 import org.openide.util.lookup.ServiceProvider;
    27 
    28 @ServiceProvider(service=GraphicsEnvironment.class)
    29 public class HTML5GraphicsEnvironment extends GraphicsEnvironment{
    30 
    31     @Override
    32     public Image getImageForPath(String path) {
    33         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    34     }
    35 
    36     @Override
    37     public LinearGradient createLinearGradient() {
    38         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    39     }
    40 
    41     @Override
    42     public Pattern createPattern() {
    43         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    44     }
    45 
    46     @Override
    47     public RadialGradient createRadialGradient() {
    48         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    49     }
    50 
    51     @Override
    52     public TextMetrics createTextMetrics() {
    53         throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    54     }
    55     
    56 }