File size: 434 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
'''
class Paragraph(object):
"""
# PyUML: Do not remove this line! # XMI_ID:_qyYgx435Ed-gg8GOK1TmhA
"""
'''
Text Paragraph
'''
OriginalString = "";
Sentences = [];
#List of instances of the Section class:
def __init__(self, string):
'''
Constructor
'''
self.OriginalString = string;
|