Community
Participate
Working Groups
Currently our messages has many operations. Each operation consist of a type, a target and some details. This looks like this e.g. fpr a create operation: { "target" : "w1", "type" : "CREATE", "details" : { "parentId" : "w1", "type" : "org.eclipse.rap.Button" } } I think we could change this by moving the mandatory properties to the top of the operation and introduce a properties object that can contain free defined properties. This could look something like this: { "target" : "w1", "type" : "CREATE", "nature" : "org.eclipse.rap.Button" "properties" : { "visibility" : true, "styles" : { "PUSH" : true "BORDER" : true }, "parent" : "w1", } } This will clean up the operations and avoids clutter.
Changes are in CVS HEAD.