1 26 27 package org.objectweb.openccm.ast.lib; 28 29 30 import org.objectweb.openccm.ast.api.AbstractStorageHomeDecl; 31 32 48 49 public class AbstractStorageHomeListImpl 50 extends ListBaseImpl 51 implements org.objectweb.openccm.ast.api.AbstractStorageHomeList 52 { 53 59 65 68 public 69 AbstractStorageHomeListImpl() 70 { 71 super(); 73 } 74 75 81 87 93 99 104 public void 105 add(AbstractStorageHomeDecl ash) 106 { 107 super.addObject(ash); 108 } 109 110 115 public AbstractStorageHomeDecl[] 116 getAbstractStorageHomes() 117 { 118 return (AbstractStorageHomeDecl[])super. 119 toArray(new AbstractStorageHomeDecl[0]); 120 } 121 } 122 | Popular Tags |