Class ReportedException.Section
- java.lang.Object
-
- org.openstreetmap.josm.tools.bugreport.ReportedException.Section
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ReportedException
private static class ReportedException.Section extends Object implements Serializable
-
-
Field Summary
Fields Modifier and Type Field Description private ArrayList<ReportedException.SectionEntry>
entries
private String
sectionName
private static long
serialVersionUID
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
printSection(PrintWriter out)
Prints this section to the output stream.void
put(String key, String value)
Add a key/value entry to this section.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
sectionName
private final String sectionName
-
entries
private final ArrayList<ReportedException.SectionEntry> entries
-
-
Method Detail
-
put
public void put(String key, String value)
Add a key/value entry to this section.- Parameters:
key
- The key. Need not be unique.value
- The value.
-
printSection
public void printSection(PrintWriter out)
Prints this section to the output stream.- Parameters:
out
- The stream to print to.
-
-