fullName

  • property
can.Construct.fullName

{String}

 

If you pass a name when creating a Construct, the fullName property will be set to the name you passed. The fullName consists of the namespace and the shortName.

String

can.Construct("MyApplication.MyConstructor",{},{});
MyApplication.MyConstructor.namespace // "MyApplication"
MyApplication.MyConstructor.shortName // "MyConstructor"
MyApplication.MyConstructor.fullName  // "MyApplication.MyConstructor"