mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
Airframe parser: add docs
This commit is contained in:
committed by
Beat Küng
parent
daeba4e75f
commit
e23e3d7bae
@@ -140,24 +140,45 @@ class Parameter(object):
|
||||
self.maintainer = maintainer
|
||||
|
||||
def GetPath(self):
|
||||
"""
|
||||
Get path to airframe startup script
|
||||
"""
|
||||
return self.path
|
||||
|
||||
def GetPostPath(self):
|
||||
"""
|
||||
Get path to airframe post startup script
|
||||
"""
|
||||
return self.post_path
|
||||
|
||||
def GetName(self):
|
||||
"""
|
||||
Get airframe name
|
||||
"""
|
||||
return self.name
|
||||
|
||||
def GetType(self):
|
||||
"""
|
||||
Get airframe type
|
||||
"""
|
||||
return self.type
|
||||
|
||||
def GetClass(self):
|
||||
"""
|
||||
Get airframe class
|
||||
"""
|
||||
return self.af_class
|
||||
|
||||
def GetId(self):
|
||||
"""
|
||||
Get airframe id
|
||||
"""
|
||||
return self.id
|
||||
|
||||
def GetMaintainer(self):
|
||||
"""
|
||||
Get airframe maintainer
|
||||
"""
|
||||
return self.maintainer
|
||||
|
||||
def SetField(self, code, value):
|
||||
|
||||
Reference in New Issue
Block a user