From c6dbcfef9520fc0f9ea68c6a3867078fd9592f73 Mon Sep 17 00:00:00 2001 From: Kevin Rushforth Date: Thu, 20 Jan 2005 23:07:04 +0000 Subject: Point to 1.4 javadoc on javadesktop.org Added template for proposed 1.4 changes Create html version of api-changes.html git-svn-id: https://svn.java.net/svn/j3d-core~svn/trunk@107 ba19aa83-45c5-6ac9-afd3-db810772062c --- www/j3d1_4/api-changes.html | 110 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 www/j3d1_4/api-changes.html (limited to 'www/j3d1_4/api-changes.html') diff --git a/www/j3d1_4/api-changes.html b/www/j3d1_4/api-changes.html new file mode 100644 index 0000000..4a324f3 --- /dev/null +++ b/www/j3d1_4/api-changes.html @@ -0,0 +1,110 @@ + + + + + + + + + + List of Proposed Java 3D 1.4 API Changes + + +

List of Proposed Java 3DTM +1.4 API Changes

+

This document conatains a list of the proposed API changes to the +Java 3DTM 1.4 API +that deviate from the 1.3 API. +

+

Note: the most up-to-date version of +this list is in the dev-1_4 branch of the docs/api-changes.txt +file, which is updated to record the addition or deprecation of +any public or protected class, interface, field, constructor, or method +to the Java 3D API. +

+

No incompatible changes to the Java 3D 1.3 API are allowed.

+
+I. New/deprecated fields, constructors, methods
+
+    SceneGraphObject
+    ----------------
+    New methods:
+        public void setName(String name)
+        public String getName()
+
+
+II. Reparented classes
+
+    NONE
+
+
+III. New classes and interfaces (in javax.media.j3d)
+
+    ShaderAppearance
+    ----------------
+        public class ShaderAppearance extends Appearance
+
+    Shader
+    ------
+        public abstract class Shader extends NodeComponent
+
+    ShaderProgram
+    -------------
+        public abstract class ShaderProgram extends NodeComponent
+
+    CgShader
+    --------
+        public abstract class CgShader extends Shader
+
+    CgFragmentShader
+    ----------------
+        public class CgFragmentShader extends CgShader
+
+    CgVertexShader
+    --------------
+        public class CgVertexShader extends CgShader
+
+    CgShaderProgram
+    ---------------
+        public class CgShaderProgram extends ShaderProgram
+
+    GLSLShader
+    ----------
+        public abstract class GLSLShader extends Shader
+
+    GLSLFragmentShader
+    ------------------
+        public class GLSLFragmentShader extends GLSLShader
+
+    GLSLVertexShader
+    ----------------
+        public class GLSLVertexShader extends GLSLShader
+
+    GLSLShaderProgram
+    -----------------
+        public class GLSLShaderProgram extends ShaderProgram
+
+ + -- cgit v1.2.3