Home | History | Annotate | Download | only in descriptors

Lines Matching refs:tooltip

36  * {@link ElementDescriptor} have an XML name, UI name, a tooltip, an SDK url,
54 /* An optional tooltip. Can be empty. */
69 * tooltip, SDK url, attributes list, children list and mandatory.
73 * @param tooltip An optional tooltip. Can be null or empty.
82 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url,
89 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null;
97 * tooltip, SDK url, attributes list, children list and mandatory.
101 * @param tooltip An optional tooltip. Can be null or empty.
110 public ElementDescriptor(String xml_name, String ui_name, String tooltip, String sdk_url,
117 mTooltip = (tooltip != null && tooltip.length() > 0) ? tooltip : null;
356 * Returns an optional tooltip. Will be null if not present.
358 * The tooltip is based on the Javadoc of the element and already processed via
360 * a UI tooltip.
371 /** Sets the optional tooltip. Can be null or empty. */
372 public void setTooltip(String tooltip) {
373 mTooltip = tooltip;