From d501ce725845e589c98cc040cbadff323b4d631a Mon Sep 17 00:00:00 2001 From: stephengold Date: Tue, 10 Sep 2024 14:13:14 -0700 Subject: [PATCH] readonly javadoc: add native type information --- .../com/github/stephengold/joltjni/readonly/ConstAaBox.java | 2 +- .../com/github/stephengold/joltjni/readonly/ConstBody.java | 2 +- .../joltjni/readonly/ConstBodyCreationSettings.java | 3 ++- .../com/github/stephengold/joltjni/readonly/ConstBodyId.java | 2 +- .../joltjni/readonly/ConstBroadPhaseLayerInterface.java | 3 ++- .../github/stephengold/joltjni/readonly/ConstCharacter.java | 2 +- .../stephengold/joltjni/readonly/ConstCharacterBase.java | 3 ++- .../joltjni/readonly/ConstCharacterBaseSettings.java | 3 ++- .../stephengold/joltjni/readonly/ConstCharacterSettings.java | 3 ++- .../stephengold/joltjni/readonly/ConstCharacterVirtual.java | 3 ++- .../joltjni/readonly/ConstCharacterVirtualSettings.java | 3 ++- .../stephengold/joltjni/readonly/ConstCollideShapeResult.java | 3 ++- .../github/stephengold/joltjni/readonly/ConstConstraint.java | 2 +- .../stephengold/joltjni/readonly/ConstConstraintSettings.java | 3 ++- .../com/github/stephengold/joltjni/readonly/ConstContact.java | 2 +- .../stephengold/joltjni/readonly/ConstContactManifold.java | 3 ++- .../stephengold/joltjni/readonly/ConstContactSettings.java | 3 ++- .../stephengold/joltjni/readonly/ConstConvexShapeSettings.java | 3 ++- .../stephengold/joltjni/readonly/ConstMassProperties.java | 3 ++- .../joltjni/readonly/ConstObjectLayerPairFilter.java | 3 ++- .../joltjni/readonly/ConstObjectVsBroadPhaseLayerFilter.java | 3 ++- .../stephengold/joltjni/readonly/ConstPhysicsMaterial.java | 3 ++- .../com/github/stephengold/joltjni/readonly/ConstPlane.java | 2 +- .../com/github/stephengold/joltjni/readonly/ConstShape.java | 2 +- .../github/stephengold/joltjni/readonly/ConstSubShapeId.java | 2 +- .../stephengold/joltjni/readonly/ConstSubShapeIdPair.java | 3 ++- .../java/com/github/stephengold/joltjni/readonly/Mat44Arg.java | 2 +- .../java/com/github/stephengold/joltjni/readonly/QuatArg.java | 2 +- .../com/github/stephengold/joltjni/readonly/RMat44Arg.java | 2 +- .../java/com/github/stephengold/joltjni/readonly/RVec3Arg.java | 2 +- .../java/com/github/stephengold/joltjni/readonly/UVec4Arg.java | 2 +- .../java/com/github/stephengold/joltjni/readonly/Vec3Arg.java | 2 +- 32 files changed, 49 insertions(+), 32 deletions(-) diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstAaBox.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstAaBox.java index b5cb6d79..6aa36c54 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstAaBox.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstAaBox.java @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to an {@code AaBox}. + * Read-only access to an {@code AaBox}. (native type: const AABox) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBody.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBody.java index 4731f06d..59b4d018 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBody.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBody.java @@ -28,7 +28,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.enumerate.EMotionType; /** - * Read-only access to a {@code Body}. + * Read-only access to a {@code Body}. (native type: const Body) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyCreationSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyCreationSettings.java index 17da03da..26ead233 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyCreationSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyCreationSettings.java @@ -30,7 +30,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.enumerate.EOverrideMassProperties; /** - * Read-only access to a {@code BodyCreationSettings} object. + * Read-only access to a {@code BodyCreationSettings} object. (native type: + * const BodyCreationSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyId.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyId.java index 7f397e5e..fc310eb0 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyId.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBodyId.java @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.BodyId; /** - * Read-only access to a {@code BodyId}. + * Read-only access to a {@code BodyId}. (native type: const BodyID) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBroadPhaseLayerInterface.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBroadPhaseLayerInterface.java index 9c07080d..e7ad5e04 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstBroadPhaseLayerInterface.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstBroadPhaseLayerInterface.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code BroadPhaseLayerInterface}. + * Read-only access to a {@code BroadPhaseLayerInterface}. (native type: const + * BroadPhaseLayerInterface) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacter.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacter.java index 88b277bf..d2376970 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacter.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacter.java @@ -28,7 +28,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code Character}. + * Read-only access to a {@code Character}. (native type: const Character) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBase.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBase.java index d322fa54..a0226065 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBase.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBase.java @@ -28,7 +28,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.enumerate.EGroundState; /** - * Read-only access to a {@code CharacterBase}. + * Read-only access to a {@code CharacterBase}. (native type: const + * CharacterBase) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBaseSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBaseSettings.java index 2ed9becc..35d56c51 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBaseSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterBaseSettings.java @@ -25,7 +25,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code CharacterBaseSettings} object. + * Read-only access to a {@code CharacterBaseSettings} object. (native type: + * const CharacterBaseSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterSettings.java index 2b1fc318..a0a1e5c1 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterSettings.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code CharacterSettings} object. + * Read-only access to a {@code CharacterSettings} object. (native type: const + * CharacterSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtual.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtual.java index 5f09b68b..e6b9e442 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtual.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtual.java @@ -29,7 +29,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code CharacterVirtual}. + * Read-only access to a {@code CharacterVirtual}. (native type: const + * CharacterVirtual) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtualSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtualSettings.java index 775e8f80..a474ef0a 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtualSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCharacterVirtualSettings.java @@ -25,7 +25,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.enumerate.EBackFaceMode; /** - * Read-only access to a {@code CharacterVirtualSettings} object. + * Read-only access to a {@code CharacterVirtualSettings} object. (native type: + * const CharacterVirtualSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCollideShapeResult.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCollideShapeResult.java index 103a7113..e38fafba 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstCollideShapeResult.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstCollideShapeResult.java @@ -26,7 +26,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code CollideShapeResult}. + * Read-only access to a {@code CollideShapeResult}. (native type: const + * CollideShapeResult) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraint.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraint.java index 8f34b1a0..a84879b3 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraint.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraint.java @@ -26,7 +26,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.enumerate.EConstraintType; /** - * Read-only access to a {@code Constraint}. + * Read-only access to a {@code Constraint}. (native type: const Constraint) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraintSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraintSettings.java index a42b6e77..e03f41a2 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraintSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstConstraintSettings.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code ConstraintSettings} object. + * Read-only access to a {@code ConstraintSettings} object. (native type: const + * ConstraintSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstContact.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstContact.java index a9fd79c5..2e9a3c34 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstContact.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstContact.java @@ -29,7 +29,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.enumerate.EMotionType; /** - * Read-only access to a {@code Contact}. + * Read-only access to a {@code Contact}. (native type: const Contact) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactManifold.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactManifold.java index b52a130c..2c2f4dc6 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactManifold.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactManifold.java @@ -26,7 +26,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code ContactManifold}. + * Read-only access to a {@code ContactManifold}. (native type: const + * ContactManifold) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactSettings.java index 452563a8..98931cde 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstContactSettings.java @@ -24,7 +24,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code ContactSettings} object. + * Read-only access to a {@code ContactSettings} object. (native type: const + * ContactSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstConvexShapeSettings.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstConvexShapeSettings.java index c0b1a319..75d8ebf7 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstConvexShapeSettings.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstConvexShapeSettings.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code ConvexShapeSettings} object. + * Read-only access to a {@code ConvexShapeSettings} object. (native type: const + * ConvexShapeSettings) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstMassProperties.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstMassProperties.java index 11c08412..aa040f5f 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstMassProperties.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstMassProperties.java @@ -25,7 +25,8 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code MassProperties} object. + * Read-only access to a {@code MassProperties} object. (native type: const + * MassProperties) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectLayerPairFilter.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectLayerPairFilter.java index db78a75b..893bda24 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectLayerPairFilter.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectLayerPairFilter.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to an {@code ObjectLayerPairFilter}. + * Read-only access to an {@code ObjectLayerPairFilter}. (native type: const + * ObjectLayerPairFilter) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectVsBroadPhaseLayerFilter.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectVsBroadPhaseLayerFilter.java index 6fcf5349..91fbb7bb 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectVsBroadPhaseLayerFilter.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstObjectVsBroadPhaseLayerFilter.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to an {@code ObjectVsBroadPhaseLayerFilter}. + * Read-only access to an {@code ObjectVsBroadPhaseLayerFilter}. (native type: + * const ObjectVsBroadPhaseLayerFilter) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstPhysicsMaterial.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstPhysicsMaterial.java index 6f83fa6a..10006c30 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstPhysicsMaterial.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstPhysicsMaterial.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code PhysicsMaterial}. + * Read-only access to a {@code PhysicsMaterial}. (native type: const + * PhysicsMaterial) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstPlane.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstPlane.java index e6e097ed..3349f4df 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstPlane.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstPlane.java @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to an {@code Plane}. + * Read-only access to an {@code Plane}. (native type: const Plane) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstShape.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstShape.java index 34b7560a..8c644097 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstShape.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstShape.java @@ -30,7 +30,7 @@ of this software and associated documentation files (the "Software"), to deal import java.nio.FloatBuffer; /** - * Read-only access to a {@code Shape}. + * Read-only access to a {@code Shape}. (native type: const Shape) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeId.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeId.java index 5892ea61..c1621802 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeId.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeId.java @@ -22,7 +22,7 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code SubShapeId}. + * Read-only access to a {@code SubShapeId}. (native type: const SubShapeID) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeIdPair.java b/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeIdPair.java index 8f434b33..c472d42c 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeIdPair.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/ConstSubShapeIdPair.java @@ -22,7 +22,8 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code SubShapeIdPair}. + * Read-only access to a {@code SubShapeIdPair}. (native type: const + * SubShapeIDPair) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/Mat44Arg.java b/src/main/java/com/github/stephengold/joltjni/readonly/Mat44Arg.java index b854594f..17b31ebd 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/Mat44Arg.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/Mat44Arg.java @@ -26,7 +26,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code Mat44}. + * Read-only access to a {@code Mat44}. (native type: const Mat44) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/QuatArg.java b/src/main/java/com/github/stephengold/joltjni/readonly/QuatArg.java index 97be643d..6f3d9797 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/QuatArg.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/QuatArg.java @@ -22,7 +22,7 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code Quat}. + * Read-only access to a {@code Quat}. (native type: const Quat) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/RMat44Arg.java b/src/main/java/com/github/stephengold/joltjni/readonly/RMat44Arg.java index 4122662b..8a5edb9d 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/RMat44Arg.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/RMat44Arg.java @@ -22,7 +22,7 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to an {@code RMat44}. + * Read-only access to an {@code RMat44}. (native type: const RMat44) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/RVec3Arg.java b/src/main/java/com/github/stephengold/joltjni/readonly/RVec3Arg.java index 4c95967b..fbfa623b 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/RVec3Arg.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/RVec3Arg.java @@ -22,7 +22,7 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to an {@code RVec3}. + * Read-only access to an {@code RVec3}. (native type: const RVec3) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/UVec4Arg.java b/src/main/java/com/github/stephengold/joltjni/readonly/UVec4Arg.java index d3f64874..e4eee202 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/UVec4Arg.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/UVec4Arg.java @@ -22,7 +22,7 @@ of this software and associated documentation files (the "Software"), to deal package com.github.stephengold.joltjni.readonly; /** - * Read-only access to a {@code UVec4}. + * Read-only access to a {@code UVec4}. (native type: const UVec4) * * @author Stephen Gold sgold@sonic.net */ diff --git a/src/main/java/com/github/stephengold/joltjni/readonly/Vec3Arg.java b/src/main/java/com/github/stephengold/joltjni/readonly/Vec3Arg.java index 70d05ebe..4499e1e9 100644 --- a/src/main/java/com/github/stephengold/joltjni/readonly/Vec3Arg.java +++ b/src/main/java/com/github/stephengold/joltjni/readonly/Vec3Arg.java @@ -24,7 +24,7 @@ of this software and associated documentation files (the "Software"), to deal import com.github.stephengold.joltjni.Vec3; /** - * Read-only access to a {@code Vec3}. + * Read-only access to a {@code Vec3}. (native type: const Vec3) * * @author Stephen Gold sgold@sonic.net */