// another question from Nicole
SPhraseSpec run = this.phraseFactory.createClause(
"you", "go", "running"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
run.setFeature(Feature.MODAL, "should"); //$NON-NLS-1$
run.addPreModifier("really"); //$NON-NLS-1$
SPhraseSpec think = this.phraseFactory.createClause("I", "think"); //$NON-NLS-1$ //$NON-NLS-2$
think.setObject(run);
run.setFeature(Feature.SUPRESSED_COMPLEMENTISER, true);
String text = this.realiser.realise(think).getRealisation();