1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
package fingerprint
func (v *device) GetInterfaceName_() string {
ifcName, _ := v.GetObject_().GetExtra("deviceIfcName")
ifcNameStr, ok := ifcName.(string)
if ok {
return ifcNameStr
}
return ""
}
func (v *device) SetInterfaceName(name string) {
v.GetObject_().SetExtra("deviceIfcName", name)
}
func (v *commonDevice) GetInterfaceName_() string {
ifcName, _ := v.GetObject_().GetExtra("deviceIfcName")
ifcNameStr, ok := ifcName.(string)
if ok {
return ifcNameStr
}
return ""
}
func (v *commonDevice) SetInterfaceName(name string) {
v.GetObject_().SetExtra("deviceIfcName", name)
}
|