|
Fernando,
> OK, so what else can I do to automate this? O:-) Can you programaticly
> add a class variable?
You can add a class variable in code, a package's preinstall script
would be a good place.
String addClassVarName: 'HtmlEntities'
However, take note of the comment for the #addClassVarName: method.
It's a bit more verbose but you should probably use
(ClassBuilder forModifying: String)
classVariableString: String classVariableString , ' HtmlEntities';
modifyOrCreate
--
Ian
Use the Reply-To address to contact me (limited validity).
Mail sent to the From address is ignored.
|