I'd like to re-implement a method of a Java class. For example, for "hi".length() to return 4. (How) Can I do that?
I know using SomeClass.metaClass I can get a reference to an existing method and define new (or overriding) method, but I can't seem to be able to do that for existing Java methods.
pad()method which would extend your string to a given max length. Then you could call length on that string. – Nate Aug 23 '10 at 13:58