1742 |
1742 |
1743 class BrowserGlobalsItem(BrowserClassAttributesItem): |
1743 class BrowserGlobalsItem(BrowserClassAttributesItem): |
1744 """ |
1744 """ |
1745 Class implementing the data structure for browser globals items. |
1745 Class implementing the data structure for browser globals items. |
1746 """ |
1746 """ |
1747 def __init__(self, parent, attributes, text, isClass=False): |
1747 def __init__(self, parent, attributes, text): |
1748 """ |
1748 """ |
1749 Constructor |
1749 Constructor |
1750 |
1750 |
1751 @param parent parent item |
1751 @param parent parent item |
1752 @param attributes list of attributes |
1752 @param attributes list of attributes |
1753 @param text text to be shown by this item (string) |
1753 @param text text to be shown by this item (string) |
1754 @param isClass flag indicating class attributes (boolean) |
|
1755 """ |
1754 """ |
1756 BrowserClassAttributesItem.__init__(self, parent, attributes, text) |
1755 BrowserClassAttributesItem.__init__(self, parent, attributes, text) |
1757 |
1756 |
1758 |
1757 |
1759 class BrowserCodingItem(BrowserItem): |
1758 class BrowserCodingItem(BrowserItem): |