Package jazzparser :: Package formalisms :: Package base
[hide private]
[frames] | no frames]

Source Code for Package jazzparser.formalisms.base

 1  """Common base code for all formalisms. 
 2   
 3  This provides the abstract base classes for all formalisms. It can  
 4  never be used itself, as all the classes are merely prototypes for  
 5  real formalisms. 
 6   
 7  This base package contains a lot of useful base classes for code that is  
 8  either common to all formalisms, or that is frequently used across many  
 9  formalisms. 
10   
11  """ 
12  """ 
13  ============================== License ======================================== 
14   Copyright (C) 2008, 2010-12 University of Edinburgh, Mark Granroth-Wilding 
15    
16   This file is part of The Jazz Parser. 
17    
18   The Jazz Parser is free software: you can redistribute it and/or modify 
19   it under the terms of the GNU General Public License as published by 
20   the Free Software Foundation, either version 3 of the License, or 
21   (at your option) any later version. 
22    
23   The Jazz Parser is distributed in the hope that it will be useful, 
24   but WITHOUT ANY WARRANTY; without even the implied warranty of 
25   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
26   GNU General Public License for more details. 
27    
28   You should have received a copy of the GNU General Public License 
29   along with The Jazz Parser.  If not, see <http://www.gnu.org/licenses/>. 
30   
31  ============================ End license ====================================== 
32   
33  """ 
34  __author__ = "Mark Granroth-Wilding <mark.granroth-wilding@ed.ac.uk>" 
35