Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Scout/Concepts/Icons

< Scout‎ | Concepts
Revision as of 08:44, 18 August 2012 by Dev.jmini.fr (Talk | contribs) (Use the current version template.)

The Scout documentation has been moved to https://eclipsescout.github.io/.

Class that contains as static members the icons that are available.

Description

Every where icons are needed, a String IconId is requested. (for example property The Scout documentation has been moved to https://eclipsescout.github.io/. of a The Scout documentation has been moved to https://eclipsescout.github.io/.)).

extends The Scout documentation has been moved to https://eclipsescout.github.io/. ???

static members mapping from the requested IconId String values to the name of the icon image files.

public static final String UserHome ="home_red";


Usage :

@Override
protected String getConfiguredIconId(){
  return Icons.UserHome;
 }


See Also

Back to the top