Currently the ability to get the Fully Qualified Name (FQN) of a
Smalltalk class is not supported.
However, during the creation of a sub-class the FQN is known so it is
rather easy to put this into
the associated class, as you describe: 'self class fqn'
When implemented ... accessing the FQN from Java will get back a
Smalltalk String, and you will
need to ask the String for its javaValue() in order to extract the FQN
as a Java String.
I will create an Issue for this in the Redline Smalltalk github page
and work on it a.s.a.p
It should only be a day or two.
On Oct 17, 10:24 am, chad <
[hidden email]> 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();