public long m_clickTimeThreshold = 300;
public int m_clickDistanceThresholdSquared = 100;
public void manufactureAnyNecessaryDetails() {
if( details.size()==2 ) {
Question what = new PickQuestion();
what.name.set( "what" );
what.setParent( this );
details.add( what );
}
for( int i=0; i<details.size(); i++ ) {
Object o = details.get( i );
if( o instanceof PickQuestion ) {