hello all
With Useful for localizing typed constant values , I would know it's
possible to typed multiarray such as

public interface MenuConstants extends Constants
{

        @DefaultStringValue("Nom")      //OK
        String nom();

        @DefaultStringArrayValue         //OK
        ({        "titre",         "titre 2"     })
        String [] titreCategorie();

        @DefaultStringArrayValue      //no ok error  syntaxe ???
        ({        "titre",         "titre 2"     } ,
{        "titre",         "titre 2"     }  )
        String [] [] titreAutre();

}

thanks you

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to