Forum Discussion
14 years ago
I was able to get this working using this reference: https://bugs.adobe.com/jira/browse/BLZ-17
Basically download EnumProxy.java, then use the following code which will register all enums
static {
PropertyProxyRegistry.getRegistry().register(Enum.class, new EnumProxy());
}
Basically download EnumProxy.java, then use the following code which will register all enums
static {
PropertyProxyRegistry.getRegistry().register(Enum.class, new EnumProxy());
}