FileDocCategorySizeDatePackage
HTMLTableImpl.javaAPI DocAzureus 3.0.3.41489Thu Feb 09 19:43:12 GMT 2006org.gudy.azureus2.core3.html.impl

HTMLTableImpl

public class HTMLTableImpl extends HTMLChunkImpl implements HTMLTable
author
parg

Fields Summary
Constructors Summary
protected HTMLTableImpl(String _content)

		super( _content );
	
Methods Summary
public HTMLTableRow[]getRows()

		String[]	rows = getTagPairContent("tr");
		
		HTMLTableRowImpl[]	res = new HTMLTableRowImpl[ rows.length ];
		
		for (int i=0;i<rows.length;i++){
			
			res[i] = new HTMLTableRowImpl( rows[i] );
		}
		
		return( res );