Interface ILcdDAFIFTRecordFilter

All Known Implementing Classes:
TLcdDAFIFTAerodromeRecordFilter, TLcdDAFIFTICAORegionFilter, TLcdDAFIFTILSRecordFilter, TLcdDAFIFTNavaidRecordFilter, TLcdDAFIFTRunwayRecordFilter, TLcdDAFIFTWayPointRecordFilter

public interface ILcdDAFIFTRecordFilter
This interface defines a generic filter for DAFIFT records.
Since:
7.2
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    accept(String[] aRecord, String aFileName)
    Tests if a given record of type String[] passes the filter or not.
  • Method Details

    • accept

      boolean accept(String[] aRecord, String aFileName)
      Tests if a given record of type String[] passes the filter or not. The actual test condition is specified by the implementation of this interface.
      Parameters:
      aRecord - The String[] to be tested by the filter.
      aFileName - The file name which contains the given record.
      Returns:
      true if the String[] passes the filter, false otherwise.