1 25 26 package org.objectweb.easybeans.component; 27 28 import java.util.List ; 29 30 import org.objectweb.easybeans.component.api.EZBComponent; 31 32 37 public class Components { 38 39 42 private List <EZBComponent> components = null; 43 44 48 public List <EZBComponent> getEZBComponents() { 49 return components; 50 } 51 52 56 public void setEZBComponents(final List <EZBComponent> components) { 57 this.components = components; 58 } 59 60 61 62 } 63 | Popular Tags |