spring property的配置,该如何处理

spring property的配置
<bean id="red5.core" class="org.red5.spring.Red5ApplicationContext">
     <property name="configLocation" value="classpath:/red5-core.xml" />
     <property name="parent" ref="red5.common" />
</bean>


Red5ApplicationContext这个类中并没有configLocation这个属性。这个是怎么回事?运行流程是怎样的?
public class Red5ApplicationContext extends FileSystemXmlApplicationContext implements ApplicationContextAware {

private static final Logger log = Red5LoggerFactory.getLogger(Red5ApplicationContext.class);

// parent context
private ApplicationContext parentContext;

// creating context
private ApplicationContext applicationContext;

// to refresh or not
private boolean refresh = true;

@Override
public void afterPropertiesSet() {

这是什么用法阿?
------解决思路----------------------
继承的里面也没有吗?
或者看看有没有setConfigLocation,大概就这样了...
------解决思路----------------------
看继承的类FileSystemXmlApplicationContext 里面的
------解决思路----------------------
FileSystemXmlApplicationContext 

它爹 或者它爹的爹 应该有。。。