Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Nebula HeapManager"

Line 1: Line 1:
 +
[[Nebula|< Back to Nebula Main Page]]
 +
 
==Introduction==
 
==Introduction==
  
Line 23: Line 25:
 
An example called HeapManagerSnippet.java is available in the plug-in org.eclipse.nebula.widgets.opal.heapmanager.snippets.
 
An example called HeapManagerSnippet.java is available in the plug-in org.eclipse.nebula.widgets.opal.heapmanager.snippets.
  
This example is also available here : https://git.eclipse.org/c/nebula/org.eclipse.nebula.git/tree/widgets/opal/heapmanager/org.eclipse.nebula.widgets.opal.heapmanager.snippets/src/org/eclipse/nebula/widgets/opal/heapmanager/snippets/HeapManagerSnippet.java
+
This example is also available here : [https://git.eclipse.org/c/nebula/org.eclipse.nebula.git/tree/widgets/opal/heapmanager/org.eclipse.nebula.widgets.opal.heapmanager.snippets/src/org/eclipse/nebula/widgets/opal/heapmanager/snippets/HeapManagerSnippet.java HeapManagerSnippet.java]

Revision as of 09:26, 21 February 2018

< Back to Nebula Main Page

Introduction

HeapManager.png

A widget that displays the available heap size, the current heap size and a button to perform a Garbage Collecting.

Usage

In order to add this widget in your GUI, you just have to instantiate the widget with the appropriate parent

If you want to change the look of the widget, you can play with the following properties :

  • barBorderColor
  • barInnerColor
  • barTextColor
  • barGradientColorTopStart
  • barGradientColorTopEnd
  • barGradientColorMiddleStart

Example

An example called HeapManagerSnippet.java is available in the plug-in org.eclipse.nebula.widgets.opal.heapmanager.snippets.

This example is also available here : HeapManagerSnippet.java

Back to the top