1 /* $Id: CompProtNullOperand.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.SOFAnode.Made.CDL;3 4 class CompProtNullOperand extends CompProtOper{5 6 public CompProtNullOperand() {7 super(CompProtKind.p_nulloperand);8 }9 10 public String toText() {11 return "NULL";12 }13 }14