9 lines
139 B
Python
9 lines
139 B
Python
import ch.psi.pshell.core.Nameable as Nameable
|
|
|
|
class Test(Nameable):
|
|
def getName(self):
|
|
return "Name"
|
|
|
|
|
|
a= Test()
|
|
print a.name |