コード例 #1
0
ファイル: Container.py プロジェクト: illume/eyestabs
    def set_indexable(self, indexable):
        """C.set_indexable (...) -> None

        Sets the indexable of the Container.

        Adds the Container to an IIndexable implementation and causes its
        children to be added to the same, too.
        """
        BaseWidget.set_indexable(self, indexable)
        for child in self.children:
            child.set_indexable(indexable)
コード例 #2
0
    def set_indexable(self, indexable):
        """C.set_indexable (...) -> None

        Sets the indexable of the Container.

        Adds the Container to an IIndexable implementation and causes its
        children to be added to the same, too.
        """
        BaseWidget.set_indexable(self, indexable)
        for child in self.children:
            child.set_indexable(indexable)
コード例 #3
0
ファイル: Bin.py プロジェクト: BGCX067/eyestabs-svn-to-git
    def set_indexable (self, indexable):
        """B.set_indexable (...) -> None

        Sets the indexable of the Bin.

        Adds the Bin to an IIndexable implementation and causes its child
        to be added to the same, too.
        """
        BaseWidget.set_indexable (self, indexable)
        if self.child:
            self.child.set_indexable (indexable)
コード例 #4
0
ファイル: Bin.py プロジェクト: illume/eyestabs
    def set_indexable(self, indexable):
        """B.set_indexable (...) -> None

        Sets the indexable of the Bin.

        Adds the Bin to an IIndexable implementation and causes its child
        to be added to the same, too.
        """
        BaseWidget.set_indexable(self, indexable)
        if self.child:
            self.child.set_indexable(indexable)