001 package pnc; 002 003 public 004 class NonSingle extends NonInterPNC { 005 006 public void init() { 007 // create the appropraite buffer 008 this.store = new SingleBuffer(); 009 010 // call super class init 011 super.init(); 012 013 } 014 015 } 016 017 018 019 020 021 022 023 024