
org.nasdanika.html.model.components.TableOfContents Maven / Gradle / Ivy
The newest version!
/**
*/
package org.nasdanika.html.model.components;
import org.nasdanika.html.model.bootstrap.TableConfiguration;
/**
*
* A representation of the model object 'Table Of Contents'.
*
*
*
* Containing action content rendered in a table.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.components.TableOfContents#isDescriptions Descriptions}
* - {@link org.nasdanika.html.model.components.TableOfContents#isTooltips Tooltips}
*
*
* @see org.nasdanika.html.model.components.ComponentsPackage#getTableOfContents()
* @model
* @generated
*/
public interface TableOfContents extends TableOfContentsBase, TableConfiguration {
/**
* Returns the value of the 'Descriptions' attribute.
* The default value is "false"
.
*
*
*
* If selected, action descriptions are shown in the table of contents.
*
* @return the value of the 'Descriptions' attribute.
* @see #setDescriptions(boolean)
* @see org.nasdanika.html.model.components.ComponentsPackage#getTableOfContents_Descriptions()
* @model default="false"
* @generated
*/
boolean isDescriptions();
/**
* Sets the value of the '{@link org.nasdanika.html.model.components.TableOfContents#isDescriptions Descriptions}' attribute.
*
*
* @param value the new value of the 'Descriptions' attribute.
* @see #isDescriptions()
* @generated
*/
void setDescriptions(boolean value);
/**
* Returns the value of the 'Tooltips' attribute.
* The default value is "false"
.
*
*
*
* If selected and "descriptions" is not selected, action tooltips are shown in the table of contents.
*
* @return the value of the 'Tooltips' attribute.
* @see #setTooltips(boolean)
* @see org.nasdanika.html.model.components.ComponentsPackage#getTableOfContents_Tooltips()
* @model default="false"
* @generated
*/
boolean isTooltips();
/**
* Sets the value of the '{@link org.nasdanika.html.model.components.TableOfContents#isTooltips Tooltips}' attribute.
*
*
* @param value the new value of the 'Tooltips' attribute.
* @see #isTooltips()
* @generated
*/
void setTooltips(boolean value);
} // TableOfContents
© 2015 - 2025 Weber Informatics LLC | Privacy Policy