protected HasPostValue [] getValuePosters (I_Renderable aRenderable)
{
HasPostValue [] theValues = super.getValuePosters (aRenderable);
HasPostValue [] retVal = null;
MComponent theTop = ((MComponent) aRenderable).getRootParent ();
if (theTop instanceof MauiApplication)
{
retVal = new HasPostValue [theValues.length + 1];
System.arraycopy (theValues, 0, retVal, 1, theValues.length);
retVal [0] = (HasPostValue) theTop;