juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementMixed.java [81:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public Object getChild(int...index) {
		if (index.length == 0)
			return null;
		if (index.length == 1)
			return getChild(index[0]);
		Object c = this;
		for (int element : index) {
			if (c instanceof HtmlElementMixed)
				c = ((HtmlElementMixed)c).getChild(element);
			else if (c instanceof HtmlElementContainer)
				c = ((HtmlElementContainer)c).getChild(element);
			else
				return null;
		}
		return c;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



juneau-core/juneau-dto/src/main/java/org/apache/juneau/dto/html5/HtmlElementContainer.java [81:96]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public Object getChild(int...index) {
		if (index.length == 0)
			return null;
		if (index.length == 1)
			return getChild(index[0]);
		Object c = this;
		for (int element : index) {
			if (c instanceof HtmlElementMixed)
				c = ((HtmlElementMixed)c).getChild(element);
			else if (c instanceof HtmlElementContainer)
				c = ((HtmlElementContainer)c).getChild(element);
			else
				return null;
		}
		return c;
	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



