Python LMF library
 All Classes Namespaces Files Functions Variables
stem.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 
3 """! @package morphology
4 """
5 
6 from core.form import Form
7 
8 class Stem(Form):
9  """! "Stem is a Form subclass representing a morph, thus manages the sublexme parts" (LMF)
10  """
11  def __init__(self):
12  """! @brief Constructor.
13  Stem instances are owned by LexicalEntry.
14  @return A Stem instance.
15  """
16  # Initialize Form attribute 'form_representation'
17  self.__new__()
18 
19  def __del__(self):
20  """! @brief Destructor.
21  """
22  pass
"Stem is a Form subclass representing a morph, thus manages the sublexme parts" (LMF) ...
Definition: stem.py:8