org.nasdanika.html.model.app.Header Maven / Gradle / Ivy
/**
*/
package org.nasdanika.html.model.app;
/**
*
* A representation of the model object 'Header'.
*
*
*
* Page header has a title on the left and a navigation bar on the right.
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.html.model.app.Header#getTitle Title}
*
*
* @see org.nasdanika.html.model.app.AppPackage#getHeader()
* @model
* @generated
*/
public interface Header extends PagePart {
/**
* Returns the value of the 'Title' containment reference.
*
*
*
* Header title displayed on the left.
*
* @return the value of the 'Title' containment reference.
* @see #setTitle(Label)
* @see org.nasdanika.html.model.app.AppPackage#getHeader_Title()
* @model containment="true"
* @generated
*/
Label getTitle();
/**
* Sets the value of the '{@link org.nasdanika.html.model.app.Header#getTitle Title}' containment reference.
*
*
* @param value the new value of the 'Title' containment reference.
* @see #getTitle()
* @generated
*/
void setTitle(Label value);
} // Header