Issue #3307 fix xml serialization of looping field
Former-commit-id:9ad5729107
[formerlycfd3efcfe2
] [formerlyc7c0d9cb4b
] [formerlyc7c0d9cb4b
[formerly51da67dd3f
]] [formerly9ad5729107
[formerlycfd3efcfe2
] [formerlyc7c0d9cb4b
] [formerlyc7c0d9cb4b
[formerly51da67dd3f
]] [formerly97ef9fc343
[formerlyc7c0d9cb4b
[formerly51da67dd3f
] [formerly97ef9fc343
[formerly c6ce72840a4ee0f44eacff46015b5382d86dd47f]]]]] Former-commit-id:97ef9fc343
Former-commit-id:8b139556f9
[formerly1d50803d20
] [formerly416e6fc85d
] [formerly 13535875e068296f0a01d0d753851d9ed07253aa [formerly 2bea2ce9efcdf786438dba2900ce1aaaf1cf5e3b] [formerly416e6fc85d
[formerlya3c20eb98a
]]] Former-commit-id: 33f94849f97c22c9777df393c751b202cdfcbd33 [formerly 49f94b32b485b3b8042a4e7e0f9a84d3a790f3e7] [formerlyb1ab93a361
[formerly9a3a4d5bfd
]] Former-commit-id:b1ab93a361
Former-commit-id:18e78f42d9
This commit is contained in:
parent
6807d244e9
commit
fc18772a2a
1 changed files with 3 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue