def __init__(self, type = 'text/css', href = None, media = None, title = u'', ownerNode = None, parentStyleSheet = None, alternate = False, disabled = None):
super(StyleSheet, self).__init__()
self._alternate = alternate
self._href = href
self._ownerNode = ownerNode
self._parentStyleSheet = parentStyleSheet
self._type = type
self.disabled = bool(disabled)
self.media = media
self.title = title
alternate = property((lambda self: self._alternate), doc = 'Not used in cssutils yet.')
href = property((lambda self: self._href), doc = 'If the style sheet is a linked style sheet, the value of this attribute is its location. For inline style sheets, the value of this attribute is None. See the href attribute definition for the LINK element in HTML 4.0, and the href pseudo-attribute for the XML style sheet processing instruction.')
ownerNode = property((lambda self: self._ownerNode), doc = 'Not used in cssutils yet.')
parentStyleSheet = property((lambda self: self._parentStyleSheet), doc = 'For style sheet languages that support the concept of style sheet inclusion, this attribute represents the including style sheet, if one exists. If the style sheet is a top-level style sheet, or the style sheet language does not support inclusion, the value of this attribute is None.')
type = property((lambda self: self._type), doc = 'This specifies the style sheet language for this style sheet. The style sheet language is specified as a content type (e.g. ``text/css``). The content type is often specified in the ownerNode. Also see the type attribute definition for the LINK element in HTML 4.0, and the type pseudo-attribute for the XML style sheet processing instruction. For CSS this is always ``text/css``.')