a quick question.. sorry if this info is available elsewhere, I've done some search but couldn't find it.

- short version
What's the status/roadmap of JaxMe JS's Java 5 (a.k.a tiger) support?

- long version
I noticed that upon adding an enum type defined within a class using JavaSource.addImport(Class) method, it seems to think the given class as an inner class (syntactically the same, just that enum types start with keyword enum, instead of class), and gives $ instead of ., which is the correct way to denote the enum type.

Example..

Let's say I have a class defined as following

package com.mycompany.myproject

public class SomeClass {
   public enum SomeEnum { ENUM01, ENUM02, ....., ENUM0N; }
   ............
}

adding the enum type SomeEnum using addImport(Class) method would result in the following line of code.

import com.mycompany.myproject.SomeClass$SomeEnum;

I'm guessing that there is no support, at least as yet, for Java 1.5. Is there a plan to do so?

Byn

ps. Hope I didn't sound like a troll asking for something that's not even a requirement or what was originally set out to be provided. I really like this component and am making an extensive use out of it. I'd definitely consider getting myself involved in the development if there is a need or the person in charge thinks it's worth the effort.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to