001/** 002 */ 003package org.nasdanika.html.model.bootstrap; 004 005 006/** 007 * <!-- begin-user-doc --> 008 * A representation of the model object '<em><b>Link Action Group Item</b></em>'. 009 * <!-- end-user-doc --> 010 * 011 * <!-- begin-model-doc --> 012 * Click on the item navigates to the link URL. 013 * <!-- end-model-doc --> 014 * 015 * <p> 016 * The following features are supported: 017 * </p> 018 * <ul> 019 * <li>{@link org.nasdanika.html.model.bootstrap.LinkActionGroupItem#getUrl <em>Url</em>}</li> 020 * </ul> 021 * 022 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getLinkActionGroupItem() 023 * @model 024 * @generated 025 */ 026public interface LinkActionGroupItem extends ActionGroupItem { 027 /** 028 * Returns the value of the '<em><b>Url</b></em>' attribute. 029 * <!-- begin-user-doc --> 030 * <!-- end-user-doc --> 031 * <!-- begin-model-doc --> 032 * Link URL. 033 * <!-- end-model-doc --> 034 * @return the value of the '<em>Url</em>' attribute. 035 * @see #setUrl(String) 036 * @see org.nasdanika.html.model.bootstrap.BootstrapPackage#getLinkActionGroupItem_Url() 037 * @model required="true" 038 * @generated 039 */ 040 String getUrl(); 041 042 /** 043 * Sets the value of the '{@link org.nasdanika.html.model.bootstrap.LinkActionGroupItem#getUrl <em>Url</em>}' attribute. 044 * <!-- begin-user-doc --> 045 * <!-- end-user-doc --> 046 * @param value the new value of the '<em>Url</em>' attribute. 047 * @see #getUrl() 048 * @generated 049 */ 050 void setUrl(String value); 051 052} // LinkActionGroupItem