CMS 3D CMS Logo

List of all members | Public Member Functions
Config._InvertModifier Class Reference
Inheritance diagram for Config._InvertModifier:
Config._BoolModifierBase

Public Member Functions

def __init__ (self, lhs)
 
def isChosen (self)
 
- Public Member Functions inherited from Config._BoolModifierBase
def __and__ (self, other)
 
def __init__ (self, lhs, rhs=None)
 
def __invert__ (self)
 
def __or__ (self, other)
 
def makeProcessModifier (self, func)
 
def toModify (self, obj, func=None, kw)
 
def toReplaceWith (self, toObj, fromObj)
 

Detailed Description

A modifier which only applies if a Modifier is not chosen

Definition at line 1316 of file Config.py.

Constructor & Destructor Documentation

def Config._InvertModifier.__init__ (   self,
  lhs 
)

Definition at line 1318 of file Config.py.

1318  def __init__(self, lhs):
1319  super(_InvertModifier,self).__init__(lhs)
def __init__(self, lhs)
Definition: Config.py:1318

Member Function Documentation

def Config._InvertModifier.isChosen (   self)

Definition at line 1320 of file Config.py.

Referenced by Config._BoolModifierBase.toModify(), Config.Modifier.toModify(), Config._BoolModifierBase.toReplaceWith(), and Config.Modifier.toReplaceWith().

1320  def isChosen(self):
1321  return not self._lhs.isChosen()
1322 
def isChosen(self)
Definition: Config.py:1320