Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can BlazeMonster generate AS3 Value Object/Data Transfer Object from complex Java classes without issue, like enum, generic, collection/set/list/map than contain other collection/set/list/map (few levels) without any issue?

Thanks.

share|improve this question
Why not ask directly the guy who wrote it? – Cornel Creanga Jan 12 '11 at 8:19
@Cornel Creanga, have asked. No answer. Will try myself and post the answer later. Thanks. – CK Lee Jan 17 '11 at 10:57

1 Answer

up vote 0 down vote accepted

It can't generate Java generic collection correctly, E.g.

public Set<MyClass> objs;

it will generate

public var auths:java.util.Set;

It also can't generate Java enum correctly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.