File size: 483 Bytes
21baa2f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | '''
Created on ٢٩/٠٥/٢٠١٠
@Created by: Muhammad Altabba
'''
from ....Controllers.Morphology.Entities.Cliticless import *;
class UnderivedCliticless(Cliticless):
"""
# PyUML: Do not remove this line! # XMI_ID:_qyiSo435Ed-gg8GOK1TmhA
"""
'''
Underived Word
'''
def __init__(self, unvoweled, voweled):
'''
Constructor
'''
self.UnvoweledForm = unvoweled;
self.VoweledForm = voweled;
|