|
From: <ls...@us...> - 2007-07-07 13:06:07
|
Revision: 3361
http://jnode.svn.sourceforge.net/jnode/?rev=3361&view=rev
Author: lsantha
Date: 2007-07-07 06:06:05 -0700 (Sat, 07 Jul 2007)
Log Message:
-----------
Openjdk integration.
Added Paths:
-----------
trunk/core/src/icedtea/sun/awt/
trunk/core/src/icedtea/sun/awt/DebugHelper.java
trunk/core/src/icedtea/sun/dc/
trunk/core/src/icedtea/sun/dc/path/
trunk/core/src/icedtea/sun/dc/path/FastPathProducer.java
trunk/core/src/icedtea/sun/dc/path/PathConsumer.java
trunk/core/src/icedtea/sun/dc/path/PathException.java
trunk/core/src/icedtea/sun/dc/pr/
trunk/core/src/icedtea/sun/dc/pr/PRException.java
trunk/core/src/icedtea/sun/dc/pr/PathDasher.java
trunk/core/src/icedtea/sun/dc/pr/PathStroker.java
trunk/core/src/icedtea/sun/dc/pr/Rasterizer.java
Added: trunk/core/src/icedtea/sun/awt/DebugHelper.java
===================================================================
--- trunk/core/src/icedtea/sun/awt/DebugHelper.java (rev 0)
+++ trunk/core/src/icedtea/sun/awt/DebugHelper.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,84 @@
+/*
+* @(#)DebugHelper.java.m4 1.11 07/05/05
+*
+* Copyright 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
+* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+*
+* This code is free software; you can redistribute it and/or modify it
+* under the terms of the GNU General Public License version 2 only, as
+* published by the Free Software Foundation. Sun designates this
+* particular file as subject to the "Classpath" exception as provided
+* by Sun in the LICENSE file that accompanied this code.
+*
+* This code is distributed in the hope that it will be useful, but WITHOUT
+* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+* version 2 for more details (a copy is included in the LICENSE file that
+* accompanied this code).
+*
+* You should have received a copy of the GNU General Public License version
+* 2 along with this work; if not, write to the Free Software Foundation,
+* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+*
+* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
+* CA 95054 USA or visit www.sun.com if you need additional information or
+* have any questions.
+*/
+
+/*
+ * This class is produced by using the m4 preprocessor to produce
+ * a .java file containing debug or release versions of the
+ * DebugHelper class.
+ */
+
+package sun.awt;
+
+import java.lang.reflect.*;
+import java.util.*;
+
+public abstract class DebugHelper {
+ static {
+ NativeLibLoader.loadLibraries();
+ }
+
+ /* name the DebugHelper member var must be declared as */
+ protected static final String DBG_FIELD_NAME = "dbg";
+ protected static final String DBG_ON_FIELD_NAME = "on";
+
+
+/* RELEASE RELEASE RELEASE RELEASE RELEASE RELEASE RELEASE RELEASE */
+ public static final boolean on = false;
+ private static final DebugHelper dbgStub = new DebugHelperStub();
+
+ static void init() {
+ // nothing to do in release mode
+ }
+
+ public static final DebugHelper create(Class classToDebug) {
+ return dbgStub;
+ }
+/* RELEASE RELEASE RELEASE RELEASE RELEASE RELEASE RELEASE RELEASE */
+
+
+ public abstract void setAssertOn(boolean enabled);
+ public abstract void setTraceOn(boolean enabled);
+ public abstract void setDebugOn(boolean enabled);
+ public abstract void println(Object object);
+ public abstract void print(Object object);
+ public abstract void printStackTrace();
+ public abstract void assertion(boolean expr);
+ public abstract void assertion(boolean expr, String msg);
+}
+
+final class DebugHelperStub extends DebugHelper
+{
+ /* stub methods for production builds */
+ public void setAssertOn(boolean enabled) {}
+ public void setTraceOn(boolean enabled) {}
+ public void setDebugOn(boolean enabled) {}
+ public void println(Object object) {}
+ public void print(Object object) {}
+ public void printStackTrace() {}
+ public void assertion(boolean expr) {}
+ public void assertion(boolean expr, String msg) {}
+}
Added: trunk/core/src/icedtea/sun/dc/path/FastPathProducer.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/path/FastPathProducer.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/path/FastPathProducer.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,56 @@
+/* FastPathProducer.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.path;
+
+import sun.java2d.pipe.ShapeSpanIterator;
+
+public class FastPathProducer {
+
+ public void sendTo(ShapeSpanIterator iterator) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void sendTo(PathConsumer adapter) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+}
Added: trunk/core/src/icedtea/sun/dc/path/PathConsumer.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/path/PathConsumer.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/path/PathConsumer.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,60 @@
+/* PathConsumer.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.path;
+
+public interface PathConsumer {
+
+ void beginPath();
+
+ void beginSubpath(float mx, float my);
+
+ void appendLine(float f, float g);
+
+ void appendQuadratic(float f, float g, float h, float i);
+
+ void appendCubic(float f, float g, float h, float i, float j, float k);
+
+ void closedSubpath();
+
+ void endPath() throws PathException;
+
+ void dispose();
+
+ PathConsumer getConsumer();
+
+}
Added: trunk/core/src/icedtea/sun/dc/path/PathException.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/path/PathException.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/path/PathException.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,42 @@
+/* PathException.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.path;
+
+public class PathException extends Exception {
+
+}
Added: trunk/core/src/icedtea/sun/dc/pr/PRException.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/pr/PRException.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/pr/PRException.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,42 @@
+/* PRException.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.pr;
+
+public class PRException extends Exception {
+
+}
Added: trunk/core/src/icedtea/sun/dc/pr/PathDasher.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/pr/PathDasher.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/pr/PathDasher.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,115 @@
+/* PathDasher.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.pr;
+
+import sun.dc.path.PathConsumer;
+
+public class PathDasher implements PathConsumer {
+
+ public PathDasher(PathStroker stroker) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated constructor stub
+ }
+
+ public void setDash(float[] dash, float dash_phase) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setDashT4(Object object) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void dispose() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendCubic(float f, float g, float h, float i, float j, float k) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendLine(float f, float g) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendQuadratic(float f, float g, float h, float i) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void beginPath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void beginSubpath(float mx, float my) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void closedSubpath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void endPath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public PathConsumer getConsumer() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+}
Added: trunk/core/src/icedtea/sun/dc/pr/PathStroker.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/pr/PathStroker.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/pr/PathStroker.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,133 @@
+/* PathStroker.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.pr;
+
+import sun.dc.path.PathConsumer;
+
+public class PathStroker implements PathConsumer {
+
+ public PathStroker(PathConsumer consumer) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated constructor stub
+ }
+
+ public void setPenDiameter(float width) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setPenT4(Object object) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setCaps(int i) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setCorners(int i, float miterlimit) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void dispose() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendCubic(float f, float g, float h, float i, float j, float k) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendLine(float f, float g) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendQuadratic(float f, float g, float h, float i) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void beginPath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void beginSubpath(float mx, float my) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void closedSubpath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void endPath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setPenFitting(float penUnits, int minPenUnits) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public PathConsumer getConsumer() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+}
Added: trunk/core/src/icedtea/sun/dc/pr/Rasterizer.java
===================================================================
--- trunk/core/src/icedtea/sun/dc/pr/Rasterizer.java (rev 0)
+++ trunk/core/src/icedtea/sun/dc/pr/Rasterizer.java 2007-07-07 13:06:05 UTC (rev 3361)
@@ -0,0 +1,180 @@
+/* Rasterizer.java -- stub file.
+ Copyright (C) 2007 Red Hat, Inc.
+
+This file is part of IcedTea.
+
+IcedTea is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License as published by
+the Free Software Foundation, version 2.
+
+IcedTea is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with IcedTea; see the file COPYING. If not, write to
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+02110-1301 USA.
+
+Linking this library statically or dynamically with other modules is
+making a combined work based on this library. Thus, the terms and
+conditions of the GNU General Public License cover the whole
+combination.
+
+As a special exception, the copyright holders of this library give you
+permission to link this library with independent modules to produce an
+executable, regardless of the license terms of these independent
+modules, and to copy and distribute the resulting executable under
+terms of your choice, provided that you also meet, for each linked
+independent module, the terms and conditions of the license of that
+module. An independent module is a module which is not derived from
+or based on this library. If you modify this library, you may extend
+this exception to your version of the library, but you are not
+obligated to do so. If you do not wish to do so, delete this
+exception statement from your version.
+*/
+
+package sun.dc.pr;
+
+public class Rasterizer {
+
+ public static final int BUTT = 0;
+ public static final int ROUND = 0;
+ public static final int SQUARE = 0;
+ public static final int MITER = 0;
+ public static final int BEVEL = 0;
+ public static final int TILE_IS_GENERAL = 0;
+ public static final String STROKE = null;
+ public static final String EOFILL = null;
+ public static final String NZFILL = null;
+ public static int TILE_SIZE;
+ public static int TILE_IS_ALL_0;
+
+ public void getAlphaBox(int[] abox) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setOutputArea(int i, int j, int k, int l) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public int getTileState() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void nextTile() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void reset() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void writeAlpha(byte[] alpha, int xstride, int ystride, int offset) throws InterruptedException {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setPenDiameter(float minPenSizeAA) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setUsage(String stroke2) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setPenT4(float[] matrix) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setPenFitting(float penUnits, int minPenUnitsAA) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setCaps(int i) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setCorners(int i, float miterLimit) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setDash(float[] dashes, float dashPhase) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void setDashT4(float[] matrix) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void beginPath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void beginSubpath(float mx, float my) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendLine(float f, float g) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendQuadratic(float f, float g, float h, float i) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void appendCubic(float f, float g, float h, float i, float j, float k) {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void closedSubpath() {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+ public void endPath() throws PRException {
+ throw new RuntimeException("Not implemented.");
+ // TODO Auto-generated method stub
+
+ }
+
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|