blob: 20f3c5e4476bdedfc0802b4657b6fea97f2c8b7f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 BSI Business Systems Integration AG.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.commons.html.internal;
import java.util.List;
import org.eclipse.scout.commons.html.IHtmlElement;
import org.eclipse.scout.commons.html.IHtmlTable;
import org.eclipse.scout.commons.html.IHtmlTableRow;
/**
* Builder for a html table.
*
* @since 5.1 (backported)
*/
public class HtmlTableBuilder extends HtmlNodeBuilder implements IHtmlTable {
public HtmlTableBuilder(List<IHtmlTableRow> rows) {
super("table", rows);
}
/**
* @deprecated use {@link IHtmlElement#cssClass(CharSequence)} or {@link IHtmlElement#style(CharSequence)}
*/
@SuppressWarnings("deprecation")
@Override
@Deprecated
public IHtmlTable cellspacing(int pixel) {
addAttribute("cellspacing", pixel);
return this;
}
/**
* @deprecated use {@link IHtmlElement#cssClass(CharSequence)} or {@link IHtmlElement#style(CharSequence)}
*/
@SuppressWarnings("deprecation")
@Override
@Deprecated
public IHtmlTable cellpadding(int pixel) {
addAttribute("cellpadding", pixel);
return this;
}
/**
* Add a css class
*/
@Override
public IHtmlTable cssClass(CharSequence cssClass) {
return (IHtmlTable) super.cssClass(cssClass);
}
/**
* Add a css style
*/
@Override
public IHtmlTable style(CharSequence style) {
return (IHtmlTable) super.style(style);
}
/**
* Add an application local link
*
* @param ref
* path to identify what is the link referring to.
*/
@Override
public IHtmlTable appLink(CharSequence ref) {
return (IHtmlTable) super.appLink(ref);
}
@Override
public IHtmlTable addAttribute(String name, CharSequence value) {
return (IHtmlTable) super.addAttribute(name, value);
}
}