All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.web.servlet.context.WebLinkConfigFile Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

The newest version!
package org.frameworkset.web.servlet.context;

import org.frameworkset.spi.assemble.LinkConfigFile;
import org.frameworkset.spi.assemble.PropertiesContainer;

public class WebLinkConfigFile extends LinkConfigFile {

	public WebLinkConfigFile(String fullPath, String configFile, LinkConfigFile parent) {
		super(fullPath, configFile, parent);
		multiRoot = true;
		// TODO Auto-generated constructor stub
	}

	@Override
	public void addLinkConfigFile(LinkConfigFile linkConfigFile) {
		//return ;
	}
	@Override
	public void _loopback(PropertiesContainer propertiesContainer,LinkConfigFile son) {
		if( son.getConfigFile().equals(this.getConfigFile()))
		{
//			if(configPropertiesFile == null)
//				configPropertiesFile = new PropertiesContainer();
//			configPropertiesFile.mergeParentConfigProperties(propertiesContainer);
			configPropertiesFile = propertiesContainer;
		}
		super._loopback(propertiesContainer, son);
		
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy