1 11 package org.eclipse.pde.internal.runtime.registry; 12 13 public abstract class ParentAdapter extends PluginObjectAdapter { 14 Object [] fChildren; 15 16 public ParentAdapter(Object object) { 17 super(object); 18 } 19 20 protected abstract Object [] createChildren(); 21 22 public Object [] getChildren() { 23 if (fChildren == null) 24 fChildren = createChildren(); 25 return fChildren; 26 } 27 } 28 | Popular Tags |