Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[riena-dev] Bug 294800 - Nested ridget ids

FYI,

in the context of my current work, I'm adding support for getting a
ridget using a nested id. Example:

ITextRidget tr = (ITextRidget) getRidget("foo.bar");

as a shortcut for:

IComplexRidget cr = (IComplexRidget) getRidget("foo");
ITextRidget tr = (ITextRidget) cr.getRidget("bar");

Elias.

-- 
Elias Volanakis | Technical Lead | EclipseSource Portland
elias@xxxxxxxxxxxxxxxxx | +1 503 929 5537 | http://eclipsesource.com


Back to the top