Skip to content

Commit

Permalink
Schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
sidharthmittal121992 committed Feb 14, 2018
1 parent c0cae50 commit cec4f03
Show file tree
Hide file tree
Showing 8 changed files with 945 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="lib" path="C:/Users/Owner/Downloads/junit-4.10.jar"/>
<classpathentry kind="lib" path="C:/Users/samsung/Downloads/junit-4.10.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Binary file modified bin/com/exchange/gui/HomeGUI.class
Binary file not shown.
3 changes: 2 additions & 1 deletion src/com/exchange/AutoScheduler.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package com.exchange;

public class AutoScheduler {
private String investmentType;
private boolean investmentType;
private boolean divideInvestment;
private double[] percentageDivision;
private double[] growthDivision;
private boolean roi;
Expand Down
12 changes: 12 additions & 0 deletions src/com/exchange/ManualScheduler.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
package com.exchange;

import java.sql.Date;

public class ManualScheduler {
private double quantity;

public ManualScheduler() {
super();
}

public boolean crateSchedule(Payment p, java.util.Date date, double dur, CryptoCurrency c,
double amount, double quant ) {
return false;
}

}
3 changes: 3 additions & 0 deletions src/com/exchange/Schedule.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
import java.util.Date;

public class Schedule {
private Payment[] payment;
private Date createDateTime;
private Integer duration;
private double amount;


public Schedule() {
}
Expand Down
554 changes: 554 additions & 0 deletions src/com/exchange/gui/AutoScheduler.java

Large diffs are not rendered by default.

372 changes: 372 additions & 0 deletions src/com/exchange/gui/BasicScheduler.java

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/com/exchange/gui/HomeGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

private void loginActionPerformed(java.awt.event.ActionEvent evt)
{
LoginGUI g=new LoginGUI(system);
LoginGUI g=new LoginGUI();
g.setVisible(true);
}

Expand Down

0 comments on commit cec4f03

Please sign in to comment.