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

HTMLTableRowImpl

public class HTMLTableRowImpl extends HTMLChunkImpl implements HTMLTableRow
author
parg

Fields Summary
Constructors Summary
protected HTMLTableRowImpl(String str)

		super(str);
	
Methods Summary
public HTMLTableCell[]getCells()

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