Skip to content

Commit

Permalink
Fixed javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Apr 22, 2018
1 parent 763bcb1 commit 1b324b8
Showing 1 changed file with 42 additions and 37 deletions.
79 changes: 42 additions & 37 deletions src/main/java/net/fortuna/ical4j/data/CalendarParserImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -184,16 +184,17 @@ private void parseCalendarList(final StreamTokenizer tokeniser, Reader in,

/**
* Parses an iCalendar property list from the specified stream tokeniser.
*
* @param tokeniser
* @throws IOException
* @throws ParseException
* @throws URISyntaxException
* @throws URISyntaxException
* @throws ParserException
*/
private class PropertyListParser {

/**
* @param tokeniser
* @throws IOException
* @throws ParseException
* @throws URISyntaxException
* @throws URISyntaxException
* @throws ParserException
*/
public void parse(final StreamTokenizer tokeniser, Reader in,
final ContentHandler handler) throws IOException, ParseException,
URISyntaxException, ParserException {
Expand All @@ -219,19 +220,20 @@ public void parse(final StreamTokenizer tokeniser, Reader in,

/**
* Parses an iCalendar property from the specified stream tokeniser.
*
* @param tokeniser
* @throws IOException
* @throws ParserException
* @throws URISyntaxException
* @throws ParseException
*/
private class PropertyParser {

private static final String PARSE_DEBUG_MESSAGE = "Property [{0}]";

private static final String PARSE_EXCEPTION_MESSAGE = "Property [{0}]";

/**
* @param tokeniser
* @throws IOException
* @throws ParserException
* @throws URISyntaxException
* @throws ParseException
*/
private void parse(final StreamTokenizer tokeniser, Reader in,
final ContentHandler handler) throws IOException, ParserException,
URISyntaxException, ParseException {
Expand Down Expand Up @@ -294,14 +296,15 @@ private void parse(final StreamTokenizer tokeniser, Reader in,

/**
* Parses a list of iCalendar parameters by parsing the specified stream tokeniser.
*
* @param tokeniser
* @throws IOException
* @throws ParserException
* @throws URISyntaxException
*/
private class ParameterListParser {

/**
* @param tokeniser
* @throws IOException
* @throws ParserException
* @throws URISyntaxException
*/
public void parse(final StreamTokenizer tokeniser, Reader in,
final ContentHandler handler) throws IOException, ParserException,
URISyntaxException {
Expand All @@ -312,15 +315,15 @@ public void parse(final StreamTokenizer tokeniser, Reader in,
}
}

/**
* @param tokeniser
* @param handler
* @throws IOException
* @throws ParserException
* @throws URISyntaxException
*/
private class ParameterParser {

/**
* @param tokeniser
* @param handler
* @throws IOException
* @throws ParserException
* @throws URISyntaxException
*/
private void parse(final StreamTokenizer tokeniser, Reader in,
final ContentHandler handler) throws IOException, ParserException,
URISyntaxException {
Expand Down Expand Up @@ -373,15 +376,16 @@ private void parse(final StreamTokenizer tokeniser, Reader in,

/**
* Parses an iCalendar component list from the specified stream tokeniser.
*
* @param tokeniser
* @throws IOException
* @throws ParseException
* @throws URISyntaxException
* @throws ParserException
*/
private class ComponentListParser {

/**
* @param tokeniser
* @throws IOException
* @throws ParseException
* @throws URISyntaxException
* @throws ParserException
*/
private void parse(final StreamTokenizer tokeniser, Reader in,
final ContentHandler handler) throws IOException, ParseException,
URISyntaxException, ParserException {
Expand All @@ -396,15 +400,16 @@ private void parse(final StreamTokenizer tokeniser, Reader in,

/**
* Parses an iCalendar component from the specified stream tokeniser.
*
* @param tokeniser
* @throws IOException
* @throws ParseException
* @throws URISyntaxException
* @throws ParserException
*/
private class ComponentParser {

/**
* @param tokeniser
* @throws IOException
* @throws ParseException
* @throws URISyntaxException
* @throws ParserException
*/
private void parse(final StreamTokenizer tokeniser, Reader in,
final ContentHandler handler) throws IOException, ParseException,
URISyntaxException, ParserException {
Expand Down

0 comments on commit 1b324b8

Please sign in to comment.