updateTexImageData
activates and binds the texture
+ * activates and binds the texture
* @param img
* @param type
- * @param needMips
*/
public void updateTexImageData(Image img, Texture.Type type) {
int texId = img.getId();
diff --git a/engine/src/blender/com/jme3/scene/plugins/blender/constraints/definitions/ConstraintDefinitionFactory.java b/engine/src/blender/com/jme3/scene/plugins/blender/constraints/definitions/ConstraintDefinitionFactory.java
index c0c42a008..4aea3dbf4 100644
--- a/engine/src/blender/com/jme3/scene/plugins/blender/constraints/definitions/ConstraintDefinitionFactory.java
+++ b/engine/src/blender/com/jme3/scene/plugins/blender/constraints/definitions/ConstraintDefinitionFactory.java
@@ -46,10 +46,6 @@ public class ConstraintDefinitionFactory {
*
* @param constraintStructure
* the constraint's structure (bConstraint clss in blender 2.49). If the value is null the NullConstraint is created.
- * @param ownerOMA
- * the old memory address of the constraint's owner
- * @param influenceIpo
- * the ipo curve of the influence factor
* @param blenderContext
* the blender context
* @throws BlenderFileException
diff --git a/engine/src/blender/com/jme3/scene/plugins/blender/curves/CurvesHelper.java b/engine/src/blender/com/jme3/scene/plugins/blender/curves/CurvesHelper.java
index 2edf1d5be..f5ecdc995 100644
--- a/engine/src/blender/com/jme3/scene/plugins/blender/curves/CurvesHelper.java
+++ b/engine/src/blender/com/jme3/scene/plugins/blender/curves/CurvesHelper.java
@@ -366,8 +366,6 @@ public class CurvesHelper extends AbstractBlenderHelper {
* the taper curve length
* @param percent
* the percent of way along the whole taper curve
- * @param store
- * the vector where the result will be stored
*/
protected float getTaperScale(float[] taperPoints, float taperLength, float percent) {
float length = taperLength * percent;
diff --git a/engine/src/blender/com/jme3/scene/plugins/blender/textures/ColorBand.java b/engine/src/blender/com/jme3/scene/plugins/blender/textures/ColorBand.java
index 4a5131af2..f4ad14b1a 100644
--- a/engine/src/blender/com/jme3/scene/plugins/blender/textures/ColorBand.java
+++ b/engine/src/blender/com/jme3/scene/plugins/blender/textures/ColorBand.java
@@ -31,10 +31,9 @@ public class ColorBand {
/**
* Constructor. Loads the data from the given structure.
- *
- * @param cbdataStructure
- * the colorband structure
- */
+ * @param tex
+ * @param blenderContext
+ */
@SuppressWarnings("unchecked")
public ColorBand(Structure tex, BlenderContext blenderContext) {
int flag = ((Number) tex.getFieldValue("flag")).intValue();
diff --git a/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/TextureBlenderAWT.java b/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/TextureBlenderAWT.java
index 3aeedc4a7..bd39da0f3 100644
--- a/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/TextureBlenderAWT.java
+++ b/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/TextureBlenderAWT.java
@@ -114,10 +114,6 @@ public class TextureBlenderAWT extends AbstractTextureBlender {
* the material color
* @param pixelColor
* the pixel color
- * @param blendFactor
- * the blending factor
- * @param blendtype
- * the blending type
* @param blenderContext
* the blender context
*/
diff --git a/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/RagdollUtils.java b/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/RagdollUtils.java
index 02bab98c3..bf218839b 100644
--- a/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/RagdollUtils.java
+++ b/engine/src/bullet-common/com/jme3/bullet/control/ragdoll/RagdollUtils.java
@@ -97,8 +97,11 @@ public class RagdollUtils {
/**
* Create a hull collision shape from linked vertices to this bone.
* Vertices have to be previoulsly gathered in a map using buildPointMap method
- * @param link
- * @param model
+ *
+ * @param pointsMap
+ * @param boneIndices
+ * @param initialScale
+ * @param initialPosition
* @return
*/
public static HullCollisionShape makeShapeFromPointMap(Map
*
- * @param tracks The tracks to set.
+ * @param tracksArray The tracks to set.
*/
public void setTracks(Track[] tracksArray) {
for (Track track : tracksArray) {
diff --git a/engine/src/core/com/jme3/animation/AnimationFactory.java b/engine/src/core/com/jme3/animation/AnimationFactory.java
index 308d5972a..38e22ea30 100644
--- a/engine/src/core/com/jme3/animation/AnimationFactory.java
+++ b/engine/src/core/com/jme3/animation/AnimationFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009-2011 jMonkeyEngine
+ * Copyright (c) 2009-2012 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -221,7 +221,7 @@ public class AnimationFactory {
/**
* Adds a key frame for the given rotation at the given time
* This can't be used if the interpolated angle is higher than PI (180°)
- * Use {@link addTimeRotationAngles(float time, float x, float y, float z)} instead that uses Euler angles rotations.
*
+ * Use {@link #addTimeRotationAngles(float time, float x, float y, float z)} instead that uses Euler angles rotations.
*
* @param time the time at which the keyFrame must be inserted
* @param rotation the rotation Quaternion to use for this keyFrame
* @see #addTimeRotationAngles(float time, float x, float y, float z)
@@ -233,7 +233,7 @@ public class AnimationFactory {
/**
* Adds a key frame for the given rotation at the given keyFrame index
* This can't be used if the interpolated angle is higher than PI (180°)
- * Use {@link addKeyFrameRotationAngles(int keyFrameIndex, float x, float y, float z)} instead that uses Euler angles rotations.
+ * Use {@link #addKeyFrameRotationAngles(int keyFrameIndex, float x, float y, float z)} instead that uses Euler angles rotations.
* @param keyFrameIndex the index at which the keyFrame must be inserted
* @param rotation the rotation Quaternion to use for this keyFrame
* @see #addKeyFrameRotationAngles(int keyFrameIndex, float x, float y, float z)
diff --git a/engine/src/core/com/jme3/export/SavableClassUtil.java b/engine/src/core/com/jme3/export/SavableClassUtil.java
index 15bedecd3..e3249af36 100644
--- a/engine/src/core/com/jme3/export/SavableClassUtil.java
+++ b/engine/src/core/com/jme3/export/SavableClassUtil.java
@@ -157,7 +157,6 @@ public class SavableClassUtil {
* are checked to handle special cases, if the modules do not handle the class name, the
* class is instantiated directly.
* @param className the class name to create.
- * @param inputCapsule the InputCapsule that will be used for loading the Savable (to look up ctor parameters)
* @return the Savable instance of the class.
* @throws InstantiationException thrown if the class does not have an empty constructor.
* @throws IllegalAccessException thrown if the class is not accessable.
diff --git a/engine/src/core/com/jme3/input/ChaseCamera.java b/engine/src/core/com/jme3/input/ChaseCamera.java
index a5f90ded7..5f6abc272 100644
--- a/engine/src/core/com/jme3/input/ChaseCamera.java
+++ b/engine/src/core/com/jme3/input/ChaseCamera.java
@@ -525,7 +525,6 @@ public class ChaseCamera implements ActionListener, AnalogListener, Control {
/**
* Sets the min zoom distance of the camera (default is 1)
- * @return minDistance
*/
public void setMinDistance(float minDistance) {
this.minDistance = minDistance;
diff --git a/engine/src/core/com/jme3/material/TechniqueDef.java b/engine/src/core/com/jme3/material/TechniqueDef.java
index 072f35f25..2df49d746 100644
--- a/engine/src/core/com/jme3/material/TechniqueDef.java
+++ b/engine/src/core/com/jme3/material/TechniqueDef.java
@@ -234,7 +234,8 @@ public class TechniqueDef implements Savable {
*
* @param vertexShader The name of the vertex shader
* @param fragmentShader The name of the fragment shader
- * @param shaderLanguage The shader language
+ * @param vertLanguage The vertex shader language
+ * @param fragLanguage The fragment shader language
*/
public void setShaderFile(String vertexShader, String fragmentShader, String vertLanguage, String fragLanguage){
this.vertName = vertexShader;
diff --git a/engine/src/core/com/jme3/post/Filter.java b/engine/src/core/com/jme3/post/Filter.java
index 919bfe715..ed246f6b3 100644
--- a/engine/src/core/com/jme3/post/Filter.java
+++ b/engine/src/core/com/jme3/post/Filter.java
@@ -289,8 +289,7 @@ public abstract class Filter implements Savable {
/**
* Override this method if you want to make a pre pass, before the actual rendering of the frame
- * @param renderManager
- * @param viewPort
+ * @param queue
*/
protected void postQueue(RenderQueue queue) {
}
diff --git a/engine/src/core/com/jme3/renderer/Renderer.java b/engine/src/core/com/jme3/renderer/Renderer.java
index 818231979..23effdf20 100644
--- a/engine/src/core/com/jme3/renderer/Renderer.java
+++ b/engine/src/core/com/jme3/renderer/Renderer.java
@@ -285,7 +285,7 @@ public interface Renderer {
* then resets the native objects.
*
* @see #resetGLObjects()
- * @see NativeObject#deleteObject(com.jme3.renderer.Renderer)
+ * @see NativeObject#deleteObject(java.lang.Object)
*/
public void cleanup();
diff --git a/engine/src/core/com/jme3/scene/Mesh.java b/engine/src/core/com/jme3/scene/Mesh.java
index 2a854e2eb..5bba0126b 100644
--- a/engine/src/core/com/jme3/scene/Mesh.java
+++ b/engine/src/core/com/jme3/scene/Mesh.java
@@ -434,8 +434,6 @@ public class Mesh implements Savable, Cloneable {
/**
* Get the mode start indices for {@link Mode#Hybrid} mesh mode.
- *
- * @return mode start indices
*/
public void setModeStart(int[] modeStart) {
this.modeStart = modeStart;
diff --git a/engine/src/core/com/jme3/shadow/PssmShadowFilter.java b/engine/src/core/com/jme3/shadow/PssmShadowFilter.java
index 342f4f2c2..2e9256941 100644
--- a/engine/src/core/com/jme3/shadow/PssmShadowFilter.java
+++ b/engine/src/core/com/jme3/shadow/PssmShadowFilter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009-2010 jMonkeyEngine
+ * Copyright (c) 2009-2012 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -138,8 +138,8 @@ public class PssmShadowFilter extends Filter {
}
/**
- * returns the labda parameter
- * see {@link setLambda(float lambda)}
+ * returns the labda parameter
+ * @see #setLambda(float lambda)
* @return lambda
*/
public float getLambda() {
@@ -160,7 +160,7 @@ public class PssmShadowFilter extends Filter {
/**
* How far the shadows are rendered in the view
- * see {@link setShadowZExtend(float zFar)}
+ * @see setShadowZExtend(float zFar)
* @return shadowZExtend
*/
public float getShadowZExtend() {
@@ -177,8 +177,8 @@ public class PssmShadowFilter extends Filter {
}
/**
- * returns the shdaow intensity
- * see {@link setShadowIntensity(float shadowIntensity)}
+ * returns the shdaow intensity
+ * @see #setShadowIntensity(float shadowIntensity)
* @return shadowIntensity
*/
public float getShadowIntensity() {
@@ -198,7 +198,7 @@ public class PssmShadowFilter extends Filter {
/**
* returns the edges thickness
- * see {@link setEdgesThickness(int edgesThickness)}
+ * @see #setEdgesThickness(int edgesThickness)
* @return edgesThickness
*/
public int getEdgesThickness() {
diff --git a/engine/src/core/com/jme3/shadow/PssmShadowRenderer.java b/engine/src/core/com/jme3/shadow/PssmShadowRenderer.java
index 1576c937d..26323c0dc 100644
--- a/engine/src/core/com/jme3/shadow/PssmShadowRenderer.java
+++ b/engine/src/core/com/jme3/shadow/PssmShadowRenderer.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009-2010 jMonkeyEngine All rights reserved.
+ * Copyright (c) 2009-2012 jMonkeyEngine All rights reserved.
*