Package zeroinstall :: Package injector :: Module model :: Class ExecutableBinding
[frames] | no frames]

Class ExecutableBinding

source code

object --+    
         |    
   Binding --+
             |
            ExecutableBinding

Make the chosen command available in $PATH.

Instance Methods
 
__init__(self, qdom, in_path)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
__str__(self)
str(x)
source code
 
__repr__(self)
str(x)
source code
 
name(self) source code
 
command(self)
"Returns the name of the specific command needed by this binding, if any.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Instance Variables
bool in_path
True to add the named command to $PATH, False to store in named variable
Properties

Inherited from object: __class__

Method Details

__init__(self, qdom, in_path)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

str(x)

Overrides: object.__repr__
(inherited documentation)

name(self)

source code 
Decorators:
  • @property

command(self)

source code 

"Returns the name of the specific command needed by this binding, if any.

Decorators:
  • @property
Overrides: Binding.command
(inherited documentation)