toni@1120: /** toni@1120: * Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach toni@1120: * toni@1120: * toni@1120: * This program is free software: you can redistribute it and/or modify it under toni@1120: * the terms of the GNU General Public License as published by the Free Software toni@1120: * Foundation, version 2 of the License. toni@1120: * toni@1120: * This program is distributed in the hope that it will be useful, but WITHOUT toni@1120: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS toni@1120: * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more toni@1120: * details. toni@1120: * toni@1120: * You should have received a copy of the GNU General Public License along with toni@1120: * this program. Look for COPYING file in the top folder. If not, see toni@1120: * http://opensource.org/licenses/GPL-2.0. toni@1120: */ toni@1120: package org.apidesign.bck2brwsr.htmlpage.api; toni@1120: toni@1120: import net.java.html.canvas.GraphicsEnvironment; toni@1120: import net.java.html.canvas.Image; toni@1120: import net.java.html.canvas.LinearGradient; toni@1120: import net.java.html.canvas.Pattern; toni@1120: import net.java.html.canvas.RadialGradient; toni@1120: import net.java.html.canvas.TextMetrics; toni@1120: import org.openide.util.lookup.ServiceProvider; toni@1120: toni@1120: @ServiceProvider(service=GraphicsEnvironment.class) toni@1120: public class HTML5GraphicsEnvironment extends GraphicsEnvironment{ toni@1120: toni@1120: @Override toni@1120: public Image getImageForPath(String path) { toni@1120: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. toni@1120: } toni@1120: toni@1120: @Override toni@1120: public LinearGradient createLinearGradient() { toni@1120: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. toni@1120: } toni@1120: toni@1120: @Override toni@1120: public Pattern createPattern() { toni@1120: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. toni@1120: } toni@1120: toni@1120: @Override toni@1120: public RadialGradient createRadialGradient() { toni@1120: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. toni@1120: } toni@1120: toni@1120: @Override toni@1120: public TextMetrics createTextMetrics() { toni@1120: throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. toni@1120: } toni@1120: toni@1120: }