Class DictionaryParser


  • public class DictionaryParser
    extends Object
    This class provides the means to parse a PDS compliant data dictionary. The Dictionary created can be used for validation purposes or just to examine the contents programmatically. To parse a dictionary use the following:

    Dictionary dictionary = DictionaryParser.parse(new URL(""));

    If you wanted to turn of aliases the alternative parse method could be used:

    Dictionary dictionary = DictionaryParser.parse(new URL(""), false);

    Version:
    $Revision$
    Author:
    pramirez, jagander