001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.kernel.portlet.configuration.icon;
016    
017    import java.util.Map;
018    
019    /**
020     * @author Eudaldo Alonso
021     */
022    public interface PortletConfigurationIcon {
023    
024            public String getAlt();
025    
026            public String getAriaRole();
027    
028            public String getCssClass();
029    
030            public Map<String, Object> getData();
031    
032            public String getIconCssClass();
033    
034            public String getId();
035    
036            public String getImage();
037    
038            public String getImageHover();
039    
040            public String getLang();
041    
042            public String getLinkCssClass();
043    
044            public String getMessage();
045    
046            public String getMethod();
047    
048            public String getOnClick();
049    
050            public String getSrc();
051    
052            public String getSrcHover();
053    
054            public String getTarget();
055    
056            public String getURL();
057    
058            public boolean isLabel();
059    
060            public boolean isLocalizeMessage();
061    
062            public boolean isShow();
063    
064            public boolean isToolTip();
065    
066            public boolean isUseDialog();
067    
068    }