-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from montezuma93/shamel
Shamel
- Loading branch information
Showing
5 changed files
with
171 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package Poker; | ||
|
||
public enum Decision { | ||
FOLD,CALL,RAISE; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package domain; | ||
//Test comment | ||
import org.springframework.scheduling.config.Task; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
public class Assignment { | ||
|
||
private int earliestStartDate; | ||
private int latestStartDate; | ||
private int earliestEndDate; | ||
private int latestEndDate; | ||
|
||
private int duration; | ||
|
||
private List<org.springframework.scheduling.config.Task> predecessors; | ||
private List<org.springframework.scheduling.config.Task> successors; | ||
|
||
public Assignment(int duration, List<org.springframework.scheduling.config.Task> predecessors, List<org.springframework.scheduling.config.Task> successors) { | ||
this.duration = duration; | ||
this.predecessors = predecessors; | ||
this.successors = successors; | ||
} | ||
|
||
public int getEarliestStartDate() { | ||
return earliestStartDate; | ||
} | ||
|
||
public void setEarliestStartDate(int earliestStartDate) { | ||
this.earliestStartDate = earliestStartDate; | ||
} | ||
|
||
public int getLatestStartDate() { | ||
return latestStartDate; | ||
} | ||
|
||
public void setLatestStartDate(int latestStartDate) { | ||
this.latestStartDate = latestStartDate; | ||
} | ||
|
||
public int getEarliestEndDate() { | ||
return earliestEndDate; | ||
} | ||
|
||
public void setEarliestEndDate(int earliestEndDate) { | ||
this.earliestEndDate = earliestEndDate; | ||
} | ||
|
||
public int getLatestEndDate() { | ||
return latestEndDate; | ||
} | ||
|
||
public void setLatestEndDate(int latestEndDate) { | ||
this.latestEndDate = latestEndDate; | ||
} | ||
|
||
public int getDuration() { | ||
return duration; | ||
} | ||
|
||
public void setDuration(int duration) { | ||
this.duration = duration; | ||
} | ||
|
||
public List<org.springframework.scheduling.config.Task> getPredecessors() { | ||
return predecessors; | ||
} | ||
|
||
public void setPredecessors(List<org.springframework.scheduling.config.Task> predecessors) { | ||
this.predecessors = predecessors; | ||
} | ||
|
||
public List<org.springframework.scheduling.config.Task> getSuccessors() { | ||
return successors; | ||
} | ||
|
||
public void setSuccessors(List<org.springframework.scheduling.config.Task> successors) { | ||
this.successors = successors; | ||
} | ||
} |
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