001    package pnc;
002    
003    public
004    class InterMulti extends InterPNC {
005      final static int SIZE_OF_BUFFER = 8;
006    
007      public void init() {
008        // create the appropraite buffer
009        this.store = new MultiBuffer(SIZE_OF_BUFFER);
010            
011        // call super class init
012        super.init();
013    
014      }
015    
016    }
017    
018    
019    
020    
021    
022