diff options
author | Kevin Rushforth <[email protected]> | 2005-10-17 23:09:50 +0000 |
---|---|---|
committer | Kevin Rushforth <[email protected]> | 2005-10-17 23:09:50 +0000 |
commit | bbbd3f78002273305ea08e3b5b151e4203759a36 (patch) | |
tree | b9554a90f634be9148b490ac79e5939c10743115 /docs | |
parent | 61ffc4dc377385a64aacb8070876bbae4c0bd348 (diff) |
Merged changes from dev-1_4 branch into the main trunk.
NOTE: all 1.4 development will now proceed on the main trunk. The dev-1_4 branch is closed.
git-svn-id: https://svn.java.net/svn/vecmath~svn/trunk@55 dd45e54d-f42e-c781-df72-dca083a658b1
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api-changes-1_4.txt | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/docs/api-changes-1_4.txt b/docs/api-changes-1_4.txt new file mode 100644 index 0000000..e7fee87 --- /dev/null +++ b/docs/api-changes-1_4.txt @@ -0,0 +1,46 @@ +------------------------------------------------------------------------ +$RCSfile$ +$Revision$ +$Date$ +------------------------------------------------------------------------ +This document conatains proposed API changes to the vecmath 1.4 API +that deviate from the 1.3 API. + +This file must be updated to record the addition or deprecation of any +public or protected class, interface, field, constructor, or method to +the vecmath API. + +The one exception to this rule is that you don't need to update this +file when adding a non-final (i.e., virtual) method to a class if that +method--with exactly the same signature--already exists in a +superclass. For example, adding a "toString" method to a vecmath object +doesn't require an entry in this file. + +No incompatible changes to the vecmath 1.3 API are allowed. + + +I. New/deprecated fields, constructors, methods + + <EXISTINGCLASS> + --------------- + New methods: + <NEWMETHOD> + + +II. Reparented classes + + <EXISTINGCLASS> + --------------- + <EXISTINGCLASS> now extends <NEWSUPERCLASS> (used to extend <OLDSUPERCLASS>) + + +III. New classes and interfaces (in javax.vecmath) + + Tuple2i + ------- + public abstract class Tuple2i implements Serializable, Cloneable + + Point2i + ------- + public class Point2i extends Tuple2i + |