def __init__(
     self,
     items=None,
     logical_operator='and',
     ):
     TypedList.__init__(self,
         items=items,
         )
     self._logical_operator = logical_operator
 def __init__(
     self,
     items=None,
     logical_operator='and',
 ):
     TypedList.__init__(
         self,
         items=items,
     )
     self._logical_operator = logical_operator
 def __init__(
     self, 
     tokens=None, 
     logical_operator='and', 
     custom_identifier=None,
     ):
     TypedList.__init__(self, 
         tokens=tokens, 
         custom_identifier=custom_identifier,
         )
     self._logical_operator = logical_operator
 def __init__(
     self,
     items=None,
     client=None,
     ):
     from abjad.tools import scoretools
     self._client = client
     TypedList.__init__(
         self,
         item_class=scoretools.NoteHead,
         keep_sorted=True,
         items=items,
         )
Exemple #5
0
 def __init__(
     self,
     items=None,
     client=None,
 ):
     from abjad.tools import scoretools
     self._client = client
     TypedList.__init__(
         self,
         item_class=scoretools.NoteHead,
         keep_sorted=True,
         items=items,
     )
 def __init__(
     self,
     parameter_specifiers,
     description=None,
     name=None,
     source=None,
     ):
     TypedList.__init__(self, parameter_specifiers)
     Specifier.__init__(
         self,
         description=description,
         name=name,
         source=source,
         )
     self._articulations = ArticulationSpecifier
Exemple #7
0
 def __init__(
     self,
     items=None,
     item_class=None,
     keep_sorted=None,
 ):
     from abjad.tools import markuptools
     self._expression = None
     item_class = item_class or markuptools.Markup
     TypedList.__init__(
         self,
         item_class=item_class,
         items=items,
         keep_sorted=keep_sorted,
     )
Exemple #8
0
 def __init__(
     self,
     contributions=None,
     description=None,
     name=None,
     source=None,
     ):
     contributions = contributions or []
     TypedList.__init__(self,
         tokens=contributions,
         item_class=MusicContributionSpecifier,
         )
     Specifier.__init__(
         self,
         description=description,
         name=name,
         source=source,
         )
 def __init__(self, items=None, logical_operator="and"):
     TypedList.__init__(self, items=items)
     self._logical_operator = logical_operator
 def __init__(self, tokens=None, logical_operator='and', name=None):
     TypedList.__init__(self, tokens=tokens, name=name)
     self._logical_operator = logical_operator
 def __init__(self, *args, **kwargs):
     self.flavor = kwargs.get('flavor', None)
     self.color = kwargs.get('color', None)
     kwargs.pop('flavor', None)
     kwargs.pop('color', None)
     TypedList.__init__(self, *args, **kwargs)