Re: How can I get the FQN of a class?
Posted by
James Ladd on
Oct 21, 2012; 2:00am
URL: https://forum.world.st/How-can-I-get-the-FQN-of-a-class-tp4651584p4652283.html
You can now get the fully qualified name of a class using the fullyQualifiedName selector.
Eg:
String fullyQualifiedName >> st.redline.core.String
On Wednesday, 17 October 2012 10:24:51 UTC+11, chad wrote:
How can I get the FQN of a class?
I espessially want to get the FQN of a smalltalk class while in java given java PrimObject that represtent an instance of the smalltalk class I am interested in.
So I want some thing like
PrimObject x;
String fqn = x.cls().fqn();