Boolean: change state to a property.

This commit is contained in:
Chris PeBenito 2015-04-30 19:03:28 -04:00
parent 82b021a5a4
commit ff1fb21012
2 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,7 @@ class BoolQuery(compquery.ComponentQuery):
if self.name and not self._match_name(boolean):
continue
if self.match_default and boolean.state() != self.default:
if self.match_default and boolean.state != self.default:
continue
yield boolean

View File

@ -49,13 +49,14 @@ class Boolean(symbol.PolicySymbol):
"""A Boolean."""
@property
def state(self):
"""The default state of the Boolean."""
return bool(self.qpol_symbol.state(self.policy))
def statement(self):
"""The policy statement."""
return "bool {0} {1};".format(self, str(self.state()).lower())
return "bool {0} {1};".format(self, str(self.state).lower())
class ConditionalExpr(symbol.PolicySymbol):