wocommunity / wolips

wolips
53 stars 53 forks source link

WOL-1104 Component Editor: Add Action dialog allows an empty string and does nothing #67

Open pascalrobert opened 12 years ago

pascalrobert commented 12 years ago

Reported by John Huss

Component Editor: Add Action dialog allows an empty string and does nothing

An empty string should either not be allowed, or should result in a VOID action method being created.

Also, the string "void" should result in a VOID action method being created. Currently it creates this:

public Void test() { Void nextPage = pageWithName(Void.class); return nextPage; }