|
1 | 1 | package com.tagtraum.perf.gcviewer.imp;
|
2 | 2 |
|
3 |
| -import com.tagtraum.perf.gcviewer.model.*; |
4 |
| -import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.*; |
5 |
| -import com.tagtraum.perf.gcviewer.util.NumberParser; |
6 |
| -import com.tagtraum.perf.gcviewer.util.ParseInformation; |
7 |
| - |
8 | 3 | import java.io.BufferedReader;
|
9 | 4 | import java.io.IOException;
|
10 | 5 | import java.io.InputStream;
|
|
17 | 12 | import java.util.regex.Matcher;
|
18 | 13 | import java.util.regex.Pattern;
|
19 | 14 |
|
| 15 | +import com.tagtraum.perf.gcviewer.model.AbstractGCEvent; |
| 16 | +import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.CollectionType; |
| 17 | +import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.Concurrency; |
| 18 | +import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.ExtendedType; |
| 19 | +import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.GcPattern; |
| 20 | +import com.tagtraum.perf.gcviewer.model.AbstractGCEvent.Type; |
| 21 | +import com.tagtraum.perf.gcviewer.model.ConcurrentGCEvent; |
| 22 | +import com.tagtraum.perf.gcviewer.model.G1GcEvent; |
| 23 | +import com.tagtraum.perf.gcviewer.model.GCEvent; |
| 24 | +import com.tagtraum.perf.gcviewer.model.GCModel; |
| 25 | +import com.tagtraum.perf.gcviewer.model.VmOperationEvent; |
| 26 | +import com.tagtraum.perf.gcviewer.util.NumberParser; |
| 27 | +import com.tagtraum.perf.gcviewer.util.ParseInformation; |
| 28 | + |
20 | 29 | /**
|
21 | 30 | * <p>Parses log output from Sun / Oracle Java 1.6. / 1.7
|
22 | 31 | * <br>Supports the following gc algorithms:
|
|
0 commit comments