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

pageunit.html.HTMLContainerBase Maven / Gradle / Ivy

package pageunit.html;

import java.util.ArrayList;
import java.util.List;

public class HTMLContainerBase extends HTMLComponentBase implements HTMLContainer {
	
	private List children = new ArrayList();

	public HTMLContainerBase(String name) {
		super(name);
	}

	public void addChild(HTMLComponent child) {
		children.add(child);
	}

	public List getChildren() {
		return children;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy