[BACK]Return to CMO_LIST.java CVS log [TXT][DIR] Up to [local] / OpenXM / src / OpenMath / ORG / openxm / tam

Diff for /OpenXM/src/OpenMath/ORG/openxm/tam/CMO_LIST.java between version 1.2 and 1.3

version 1.2, 2000/09/13 06:32:42 version 1.3, 2000/12/03 12:40:40
Line 1 
Line 1 
 /**  /**
  * $OpenXM: OpenXM/src/OpenMath/ORG/openxm/tam/CMO_LIST.java,v 1.1 2000/09/12 07:05:06 tam Exp $   * $OpenXM: OpenXM/src/OpenMath/ORG/openxm/tam/CMO_LIST.java,v 1.2 2000/09/13 06:32:42 tam Exp $
  */   */
 package ORG.openxm.tam;  package ORG.openxm.tam;
   
Line 28  final public class CMO_LIST extends CMO{
Line 28  final public class CMO_LIST extends CMO{
   public int DISCRIMINATOR(){    public int DISCRIMINATOR(){
     return CMO.LIST;      return CMO.LIST;
   }    }
   
       public boolean allowQ (int[] datacap) {
                   if(CMO.allowQ_tag(datacap, DISCRIMINATOR())) {
                           for (int j=0; j < ob.length; j++) {
                                   if (!ob[j].allowQ(datacap)) {
                                           return false;
                                   }
                           }
                           return true;
           }
           return false;
       }
   
   public void sendByObject(OpenXMstream os)    public void sendByObject(OpenXMstream os)
        throws IOException,MathcapViolation{         throws IOException,MathcapViolation{

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>