-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Data models complete! Also adjusted some old ones to make getIndex() standard
- Loading branch information
1 parent
5f05b79
commit f14011c
Showing
13 changed files
with
379 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
photon/src/main/java/com/strikete/photon/objects/Curve.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package com.strikete.photon.objects; | ||
|
||
public class Curve { | ||
|
||
/* | ||
* VARIABLES | ||
*/ | ||
private int curveNum; | ||
private int index; | ||
private String uid; | ||
private String label; | ||
|
||
|
||
/* | ||
* METHODS - GETTERS | ||
*/ | ||
public int getCurveNumber() { | ||
return curveNum; | ||
} | ||
public int getIndex() { | ||
return index; | ||
} | ||
public String getUid() { | ||
return uid; | ||
} | ||
public String getLabel() { | ||
return label; | ||
} | ||
|
||
|
||
/* | ||
* METHODS - SETTER | ||
*/ | ||
public void setLabel(String labelIn) { | ||
this.label = labelIn; | ||
} | ||
|
||
|
||
/* | ||
* CONSTRUCTOR | ||
*/ | ||
public Curve(int curveNumIn, int indexIn, String uidIn) { | ||
this.curveNum = curveNumIn; | ||
this.index = indexIn; | ||
this.uid = uidIn; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
photon/src/main/java/com/strikete/photon/objects/MagicSheet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package com.strikete.photon.objects; | ||
|
||
public class MagicSheet { | ||
|
||
/* | ||
* VARIABLES | ||
*/ | ||
private int magicSheetNum; | ||
private int index; | ||
private String uid; | ||
private String label; | ||
|
||
|
||
/* | ||
* METHODS - GETTERS | ||
*/ | ||
public int getMagicSheetNumber() { | ||
return magicSheetNum; | ||
} | ||
public int getIndex() { | ||
return index; | ||
} | ||
public String getUid() { | ||
return uid; | ||
} | ||
public String getLabel() { | ||
return label; | ||
} | ||
|
||
|
||
/* | ||
* METHODS - SETTER | ||
*/ | ||
public void setLabel(String labelIn) { | ||
this.label = labelIn; | ||
} | ||
|
||
|
||
/* | ||
* CONSTRUCTOR | ||
*/ | ||
public MagicSheet(int magicSheetNumIn, int indexIn, String uidIn) { | ||
this.magicSheetNum = magicSheetNumIn; | ||
this.index = indexIn; | ||
this.uid = uidIn; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.