-
Notifications
You must be signed in to change notification settings - Fork 8
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 #14 from omnt/refactor/iperf3
Refactor iPerf3 Metric GUI
- Loading branch information
Showing
53 changed files
with
1,321 additions
and
791 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
app/src/main/java/de/fraunhofer/fokus/OpenMobileNetworkToolkit/Iperf3/Intervals.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,19 @@ | ||
package de.fraunhofer.fokus.OpenMobileNetworkToolkit.Iperf3; | ||
|
||
import de.fraunhofer.fokus.OpenMobileNetworkToolkit.Iperf3.JSON.Interval.Interval; | ||
import java.util.ArrayList; | ||
|
||
public class Intervals { | ||
private ArrayList<Interval> intervals;; | ||
|
||
public Intervals(){ | ||
this.intervals = new ArrayList<>(); | ||
} | ||
public void addInterval(Interval interval){ | ||
intervals.add(interval); | ||
} | ||
public ArrayList<Interval> getIntervalArrayList(){ | ||
return intervals; | ||
} | ||
|
||
} |
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.