Issue #3307 fix xml serialization of looping field

Former-commit-id: 51da67dd3f [formerly c6ce72840a4ee0f44eacff46015b5382d86dd47f]
Former-commit-id: 97ef9fc343
This commit is contained in:
Nate Jensen 2014-06-23 09:54:11 -05:00
parent 23dea36a2c
commit a3c20eb98a

View file

@ -38,6 +38,7 @@ import org.eclipse.ui.commands.ICommandService;
* ------------- -------- ----------- --------------------------
* Aug 30, 2007 randerso Initial Creation.
* Oct 22, 2013 2491 bsteffen Remove ISerializableObject
* Jun 23, 2014 3307 njensen Fix xml serialization of looping field
*
* </pre>
*
@ -50,7 +51,7 @@ public class LoopProperties {
public enum LoopMode {
Forward, Backward, Cycle
};
}
/** frame time increment in ms */
public static final int FRAME_STEP = 100;
@ -144,12 +145,8 @@ public class LoopProperties {
this.mode = mode;
}
public boolean isLooping() {
return isLooping;
}
@XmlElement
public boolean getLooping() {
public boolean isLooping() {
return isLooping;
}