Copyright (C) 2003,2004 dr. Cristiano Sadun

org.sadun.text.ffp
Interface FlatFileParser.UnmatchedLineListener

All Superinterfaces:
FlatFileParser.Listener
Enclosing interface:
FlatFileParser

public static interface FlatFileParser.UnmatchedLineListener
extends FlatFileParser.Listener

Classes implementing this extension of Listener will receive notification about lines where no condition matches on parsing, if the failOnNoMatchingConditions property is false.

Version:
1.0
Author:
Cristiano Sadun

Method Summary
 void noMatchingCondition(int physicalLineCount, java.lang.String line)
          Invoked when the failOnNoMatchingConditions property is false and no matching conditions are found for a certain line.
 
Methods inherited from interface org.sadun.text.ffp.FlatFileParser.Listener
lineParsed
 

Method Detail

noMatchingCondition

public void noMatchingCondition(int physicalLineCount,
                                java.lang.String line)
Invoked when the failOnNoMatchingConditions property is false and no matching conditions are found for a certain line.

Parameters:
physicalLineCount - the physical line number
line - the line

Copyright (C) 2003,2004 dr. Cristiano Sadun