package bluej.testmgr.record;

import bluej.pkgmgr.PkgMgrFrame;

public class ArrayElementInspectorRecord
extends InvokerRecord{    
   private InvokerRecord parentIr;
   
   private int element;
    
   
   public ArrayElementInspectorRecord(InvokerRecord parentIr, int element)
   {        
      this.parentIr = parentIr;
       
      this.element = element;     
      }
    
   
   @Override
   
   public boolean hasVoidResult()
   {        
      return false;     
      }    
    
   
   @Override
   
   public String toExpression()
   {
      return parentIr.toExpression() + "[" + element + "]";     
      }

   
   @Override
   
   public String toFixtureDeclaration(String firstIndent)
   {        
      return null;     
      }

   
   @Override
   
   public String toFixtureSetup(String secondIndent)
   {        
      return null;     
      }

   
   @Override
   
   public String toTestMethod(PkgMgrFrame pmf, String secondIndent)
   {        
      return null;     
      } 
   }
top, use, map, class ArrayElementInspectorRecord

.   ArrayElementInspectorRecord
.   hasVoidResult
.   toExpression
.   toFixtureDeclaration
.   toFixtureSetup
.   toTestMethod




58 neLoCode + 0 LoComm