Removed indexing variable from SWGList as all lists have indexes and added JavaDoc to SWGList class

This commit is contained in:
Waverunner
2015-06-07 16:47:41 -04:00
parent 9ec0066485
commit 0f4ec23182
4 changed files with 190 additions and 55 deletions
@@ -49,8 +49,8 @@ public class PlayerObject extends IntangibleObject {
private String biography = "";
// PLAY 03
private SWGList<Integer> flagsList = new SWGList<>(BaselineType.PLAY, 3, 5, false, StringType.UNSPECIFIED, true);
private SWGList<Integer> profileFlags = new SWGList<>(BaselineType.PLAY, 3, 6, false, StringType.UNSPECIFIED, true);
private SWGList<Integer> flagsList = new SWGList<>(BaselineType.PLAY, 3, 5, StringType.UNSPECIFIED, true);
private SWGList<Integer> profileFlags = new SWGList<>(BaselineType.PLAY, 3, 6, StringType.UNSPECIFIED, true);
private String title = "";
private int bornDate = 0;
private int playTime = 0;