Exemplo n.º 1
0
 /** Generates the code for the setter. */
 protected void addSetter(
     Context ctxt,
     MibNode node,
     String description,
     String syntax,
     String var,
     StringBuffer buff) {
   if (!isRowStatus(ctxt, var)) super.addSetter(ctxt, node, description, syntax, var, buff);
   else if (MibGenProperties.isDeprecatedEnabled())
     super.addSetter(ctxt, node, description, syntax, var, buff);
   else
     // We add a comment to say that no checker is generated
     // for row status
     addRowStatusSetter(ctxt, node, description, syntax, var, buff);
 }