jme3-networking/jme3-plugins JavaDoc corrections (comments only)

accellbaker
Stephen Gold 6 years ago
parent 8d6900a32a
commit c7c203853c
  1. 6
      jme3-networking/src/main/java/com/jme3/network/service/ServiceManager.java
  2. 9
      jme3-plugins/src/fbx/java/com/jme3/scene/plugins/fbx/AnimationList.java
  3. 2
      jme3-plugins/src/gltf/java/com/jme3/scene/plugins/gltf/MaterialAdapter.java
  4. 4
      jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SkeletonLoader.java
  5. 4
      jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/matext/MaterialExtension.java

@ -1,5 +1,5 @@
/*
* Copyright (c) 2015 jMonkeyEngine
* Copyright (c) 2015-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -55,9 +55,9 @@ public abstract class ServiceManager<T> {
}
/**
* Retreives the 'parent' of this service manager, usually
* Retrieves the 'parent' of this service manager, usually
* a more specifically typed version of 'this' but it can be
* anything the seervices are expecting.
* anything the services are expecting.
*/
protected abstract T getParent();

@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2014 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -36,7 +36,7 @@ import java.util.List;
/**
* Defines animations set that will be created while loading FBX scene
* <p>Animation <code>name</code> is using to access animation via {@link AnimControl}.<br>
* <p>Animation <code>name</code> is using to access animation via {@link com.jme3.animation.AnimControl}.<br>
* <code>firstFrame</code> and <code>lastFrame</code> defines animation time interval.<br>
* Use <code>layerName</code> also to define source animation layer in the case of multiple layers in the scene.<br>
* Skeletal animations will be created if only scene contain skeletal bones</p>
@ -47,8 +47,7 @@ public class AnimationList {
/**
* Use in the case of multiple animation layers in FBX asset
* @param name - animation name to assess via {@link AnimControl}
* @param layerName - source layer
* @param name - animation name to access via {@link com.jme3.animation.AnimControl}
*/
public void add(String name, int firstFrame, int lastFrame) {
add(name, null, firstFrame, lastFrame);
@ -56,7 +55,7 @@ public class AnimationList {
/**
* Use in the case of multiple animation layers in FBX asset
* @param name - animation name to assess via {@link AnimControl}
* @param name - animation name to access via {@link com.jme3.animation.AnimControl}
* @param layerName - source layer
*/
public void add(String name, String layerName, int firstFrame, int lastFrame) {

@ -26,7 +26,7 @@ public abstract class MaterialAdapter {
/**
* Should return the material definition used by this material adapter
*
* @return
* @return path to the material definition
*/
protected abstract String getMaterialDefPath();

@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2012 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -224,7 +224,7 @@ public class SkeletonLoader extends DefaultHandler implements AssetLoader {
}
/**
* Reset the SkeletonLoader in case an error occured while parsing XML.
* Reset the SkeletonLoader in case an error occurred while parsing XML.
* This allows future use of the loader even after an error.
*/
private void fullReset() {

@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2012 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -74,7 +74,7 @@ public class MaterialExtension {
}
/**
* Retreives a mapping from an Ogre3D base material texture alias
* Retrieves a mapping from an Ogre3D base material texture alias
* to a jME3 texture param
* @param ogreTexAlias The texture alias in the Ogre3D base material
* @return The texture alias in the Ogre3D base material

Loading…
Cancel
Save