All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nasdanika.html.model.bootstrap.TableHeader Maven / Gradle / Ivy

The newest version!
/**
 */
package org.nasdanika.html.model.bootstrap;


/**
 * 
 * A representation of the model object 'Table Header'.
 * 
 *
 * 
 * Table header.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.nasdanika.html.model.bootstrap.TableHeader#isDark Dark}
  • *
  • {@link org.nasdanika.html.model.bootstrap.TableHeader#isLight Light}
  • *
* * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableHeader() * @model * @generated */ public interface TableHeader extends TableSection { /** * Returns the value of the 'Dark' attribute. * * * * Dark header (mutually exclusive with light). * * @return the value of the 'Dark' attribute. * @see #setDark(boolean) * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableHeader_Dark() * @model * @generated */ boolean isDark(); /** * Sets the value of the '{@link org.nasdanika.html.model.bootstrap.TableHeader#isDark Dark}' attribute. * * * @param value the new value of the 'Dark' attribute. * @see #isDark() * @generated */ void setDark(boolean value); /** * Returns the value of the 'Light' attribute. * * * * Light header (mutually exclusive with dark). * * @return the value of the 'Light' attribute. * @see #setLight(boolean) * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getTableHeader_Light() * @model * @generated */ boolean isLight(); /** * Sets the value of the '{@link org.nasdanika.html.model.bootstrap.TableHeader#isLight Light}' attribute. * * * @param value the new value of the 'Light' attribute. * @see #isLight() * @generated */ void setLight(boolean value); } // TableHeader




© 2015 - 2024 Weber Informatics LLC | Privacy Policy