File size: 452 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 25 26 27 28 | '''
Created on ٢٨/٠٤/٢٠١٠
@Created by: Muhammad Altabba
'''
class Root(object):
"""
# PyUML: Do not remove this line! # XMI_ID:_qz4V-I35Ed-gg8GOK1TmhA
"""
'''
classdocs
'''
String = '';
PatternsIDs = [];
def __init__(self, string, patterns):
'''
Constructor
'''
self.String = string;
self.PatternsIDs = patterns;
pass
|