Package arcjobtool :: Package plugins :: Module Plugins :: Class PluginBase
[hide private]
[frames] | no frames]

Class PluginBase

source code


Base class for ArcGui plugins.

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
onInit(self) source code
 
onDestroy(self) source code
 
onEdit(self) source code
 
onSetup(self) source code
 
onClean(self) source code
 
onSave(self, workDir) source code
 
onLoad(self, workDir) source code
 
onGetId(self) source code
 
onGetVersion(self) source code
 
onGetShortName(self) source code
 
onGetDescription(self) source code
 
onNeedSave(self) source code
 
onGetTask(self) source code
 
getFilename(self) source code
 
setFilename(self, filename) source code
 
setWorkDir(self, workDir) source code
 
getWorkDir(self) source code

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

Properties [hide private]
  id
  version
  filename
  shortname
  description
  workDir
  task

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

Property Details [hide private]

id

Get Method:
onGetId(self)

version

Get Method:
onGetVersion(self)

filename

Get Method:
getFilename(self)
Set Method:
setFilename(self, filename)

shortname

Get Method:
onGetShortName(self)

description

Get Method:
onGetDescription(self)

workDir

Get Method:
getWorkDir(self)
Set Method:
setWorkDir(self, workDir)

task

Get Method:
onGetTask(self)