001 package org.trails.test;
002
003 import java.util.List;
004
005
006 public abstract class ComponentC extends ComponentA
007 {
008 public abstract List getListElements();
009 public List getElements() { return getListElements(); }
010 }