*/
public synchronized void setMediaTime(Time t) {
if(currentState == Unrealized ||
currentState == Realizing)
{
throw new NotRealizedError(
"Cannot set media time on an Unrealized Controller");
}
long nano = t.getNanoseconds();
Time duration = getDuration();