{
SchemaTypeImpl sImpl = getImpl(sType);
if (sImpl == null)
return;
PrePostExtension ext = sImpl.getPrePostExtension();
if (ext != null)
{
if (ext.hasPreCall())
{
emit("if ( " + ext.getStaticHandler() + ".preSet(" + prePostOpString(opType) + ", this, " + identifier + ", " + isAttr + ", " + index + "))");
startBlock();
}
}
}