blob: 76227f7f353861e883779ce7b0ada5c45bb1c37b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-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;
/**
* Marker Interface for html table
*
* @since 6.0 (backported)
*/
public interface IHtmlTable extends IHtmlElement {
/**
* Add a css class
*/
@Override
IHtmlTable cssClass(CharSequence cssClass);
/**
* Add a css style
*/
@Override
IHtmlTable style(CharSequence style);
/**
* Add an application local link
*
* @param path
* path to identify what is the link referring to.
*/
@Override
IHtmlTable appLink(CharSequence path);
/**
* {@inheritDoc}
*/
@Override
IHtmlTable addAttribute(String name, CharSequence value);
}