KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > SOFA > SOFAnode > Made > CDL > CompProtNullOperand


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 JavaDoc toText() {
11     return "NULL";
12   }
13 }
14
Popular Tags