Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/anim/AnimClip.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class AnimClip implements JmeCloneable, Savable {

private AnimTrack[] tracks;

public AnimClip() {
protected AnimClip() {
}

public AnimClip(String name) {
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/anim/Armature.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class Armature implements JmeCloneable, Savable {
/**
* Serialization only
*/
public Armature() {
protected Armature() {
}

/**
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/anim/MorphTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class MorphTrack implements AnimTrack<float[]> {
/**
* Serialization-only. Do not use.
*/
public MorphTrack() {
protected MorphTrack() {
}

/**
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/anim/SkinningControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public class SkinningControl extends AbstractControl implements Cloneable, JmeCl
/**
* Serialization only. Do not use.
*/
public SkinningControl() {
protected SkinningControl() {
}

/**
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/animation/Animation.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class Animation implements Savable, Cloneable, JmeCloneable {
/**
* Serialization-only. Do not use.
*/
public Animation() {
protected Animation() {
}

/**
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/animation/AudioTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ public void onAnimChange(AnimControl control, AnimChannel channel, String animNa
}

/**
* default constructor for serialization only
* constructor for serialization only
*/
public AudioTrack() {
protected AudioTrack() {
}

/**
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/animation/Bone.java
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public Bone(String name) {
/**
* Serialization only. Do not use.
*/
public Bone() {
protected Bone() {
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/animation/BoneTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public final class BoneTrack implements JmeCloneable, Track {
/**
* Serialization-only. Do not use.
*/
public BoneTrack() {
protected BoneTrack() {
}

/**
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/animation/EffectTrack.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ public void onAnimChange(AnimControl control, AnimChannel channel, String animNa
}

/**
* default constructor only for serialization
* constructor only for serialization
*/
public EffectTrack() {
protected EffectTrack() {
}

/**
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/animation/Pose.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -63,7 +63,7 @@ public Pose(String name, int targetMeshIndex, Vector3f[] offsets, int[] indices)
/**
* Serialization-only. Do not use.
*/
public Pose()
protected Pose()
{
}

Expand Down
6 changes: 3 additions & 3 deletions jme3-core/src/main/java/com/jme3/animation/PoseTrack.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -62,7 +62,7 @@ public PoseFrame(Pose[] poses, float[] weights) {
/**
* Serialization-only. Do not use.
*/
public PoseFrame()
protected PoseFrame()
{
}

Expand Down Expand Up @@ -114,7 +114,7 @@ public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){
/**
* Serialization-only. Do not use.
*/
public PoseTrack()
protected PoseTrack()
{
}

Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/animation/Skeleton.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public Skeleton(Skeleton source) {
/**
* Serialization only. Do not use.
*/
public Skeleton() {
protected Skeleton() {
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public class SkeletonControl extends AbstractControl implements Cloneable, JmeCl
/**
* Serialization only. Do not use.
*/
public SkeletonControl() {
protected SkeletonControl() {
}

private void switchToHardware() {
Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/cinematic/Cinematic.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class Cinematic extends AbstractCinematicEvent implements AppState {
* Used for serialization creates a cinematic, don't use this constructor
* directly
*/
public Cinematic() {
protected Cinematic() {
super();
}

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -75,7 +75,7 @@ public class AnimationEvent extends AbstractCinematicEvent {
* used for serialization don't call directly use one of the following
* constructors
*/
public AnimationEvent() {
protected AnimationEvent() {
super();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public ParticleEmitter(String name, Type type, int numParticles) {
/**
* For serialization only. Do not use.
*/
public ParticleEmitter() {
protected ParticleEmitter() {
super();
setBatchHint(BatchHint.Never);
}
Expand Down
6 changes: 3 additions & 3 deletions jme3-core/src/main/java/com/jme3/light/LightList.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -69,9 +69,9 @@ else if (l1.lastDistance > l2.lastDistance)
};

/**
* Default constructor for serialization. Do not use
* constructor for serialization. Do not use
*/
public LightList(){
protected LightList(){
}

/**
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/material/MatParam.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -66,7 +66,7 @@ public MatParam(VarType type, String name, Object value) {
/**
* Serialization only. Do not use.
*/
public MatParam() {
protected MatParam() {
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2016 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -83,7 +83,7 @@ public final class MatParamOverride extends MatParam {
/**
* Serialization only. Do not use.
*/
public MatParamOverride() {
protected MatParamOverride() {
super();
}

Expand Down
2 changes: 1 addition & 1 deletion jme3-core/src/main/java/com/jme3/material/MaterialDef.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class MaterialDef{
/**
* Serialization only. Do not use.
*/
public MaterialDef(){
protected MaterialDef(){
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public TechniqueDef(String name, int sortId){
/**
* Serialization only. Do not use.
*/
public TechniqueDef() {
protected TechniqueDef() {
shaderLanguages = new EnumMap<Shader.ShaderType, String>(Shader.ShaderType.class);
shaderNames = new EnumMap<Shader.ShaderType, String>(Shader.ShaderType.class);
defineNames = new ArrayList<String>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public FilterPostProcessor(AssetManager assetManager) {
* Don't use this constructor, use {@link #FilterPostProcessor(AssetManager assetManager)}<br>
* This constructor is used for serialization only
*/
public FilterPostProcessor() {
protected FilterPostProcessor() {
}

/**
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/CameraNode.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -52,7 +52,7 @@ public class CameraNode extends Node {
/**
* Serialization only. Do not use.
*/
public CameraNode() {
protected CameraNode() {
super();
}

Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/LightNode.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -52,7 +52,7 @@ public class LightNode extends Node {
/**
* Serialization only. Do not use.
*/
public LightNode() {
protected LightNode() {
}

public LightNode(String name, Light light) {
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/VertexBuffer.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -382,7 +382,7 @@ public VertexBuffer(Type type){
/**
* Serialization only. Do not use.
*/
public VertexBuffer(){
protected VertexBuffer(){
super();
}

Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/debug/Arrow.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2018 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -62,7 +62,7 @@ public class Arrow extends Mesh {
/**
* Serialization only. Do not use.
*/
public Arrow() {
protected Arrow() {
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2010 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -42,7 +42,7 @@ public class JointShape extends Mesh {
/**
* Serialization only. Do not use.
*/
public JointShape() {
protected JointShape() {
float width = 1;
float height = 1;
setBuffer(Type.Position, 3, new float[]{-width * 0.5f, -width * 0.5f, 0,
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -67,7 +67,7 @@ public class InstancedGeometry extends Geometry {
/**
* Serialization only. Do not use.
*/
public InstancedGeometry() {
protected InstancedGeometry() {
super();
setIgnoreTransform(true);
setBatchHint(BatchHint.Never);
Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/shape/Box.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2018 jMonkeyEngine
* Copyright (c) 2009-2019 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -130,7 +130,7 @@ public Box(Vector3f min, Vector3f max) {
/**
* Empty constructor for serialization only. Do not use.
*/
public Box(){
protected Box(){
super();
}

Expand Down
4 changes: 2 additions & 2 deletions jme3-core/src/main/java/com/jme3/scene/shape/Curve.java
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -55,7 +55,7 @@ public class Curve extends Mesh {
/**
* Serialization only. Do not use.
*/
public Curve() {
protected Curve() {
}

/**
Expand Down
Loading