Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/oprofile/ui/model/UiModelDependent.java')
-rw-r--r--oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/oprofile/ui/model/UiModelDependent.java70
1 files changed, 70 insertions, 0 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/oprofile/ui/model/UiModelDependent.java b/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/oprofile/ui/model/UiModelDependent.java
new file mode 100644
index 0000000000..6b7a32b137
--- /dev/null
+++ b/oprofile/org.eclipse.linuxtools.oprofile.ui/src/org/eclipse/linuxtools/oprofile/ui/model/UiModelDependent.java
@@ -0,0 +1,70 @@
+/*******************************************************************************
+ * Copyright (c) 2008 Red Hat, Inc.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Kent Sebastian <ksebasti@redhat.com> - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.linuxtools.oprofile.ui.model;
+
+import org.eclipse.linuxtools.oprofile.core.model.OpModelImage;
+import org.eclipse.linuxtools.oprofile.ui.OprofileUiMessages;
+import org.eclipse.linuxtools.oprofile.ui.OprofileUiPlugin;
+import org.eclipse.swt.graphics.Image;
+
+public class UiModelDependent implements IUiModelElement {
+ private IUiModelElement _parent;
+ private OpModelImage _dataModelDependents[];
+ private UiModelImage _dependents[];
+ private int _totalCount;
+ private int _depCount;
+
+ public UiModelDependent(IUiModelElement parent, OpModelImage dependents[], int totalCount, int depCount) {
+ _parent = parent;
+ _dataModelDependents = dependents;
+ _dependents = null;
+ _totalCount = totalCount;
+ _depCount = depCount;
+ refreshModel();
+ }
+
+ private void refreshModel() {
+ _dependents = new UiModelImage[_dataModelDependents.length];
+
+ for (int i = 0; i < _dataModelDependents.length; i++) {
+ _dependents[i] = new UiModelImage(this, _dataModelDependents[i], _totalCount, 0);
+ }
+ }
+
+ @Override
+ public String toString() {
+ double countPercentage = (double)_depCount / (double)_totalCount;
+ String percentage = OprofileUiPlugin.getPercentageString(countPercentage);
+
+ return percentage + " " + OprofileUiMessages.getString("uimodel.percentage.in") + OprofileUiMessages.getString("uimodel.dependent.dependent.images"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ }
+
+ /** IUiModelElement functions **/
+ public String getLabelText() {
+ return toString();
+ }
+
+ public IUiModelElement[] getChildren() {
+ return _dependents;
+ }
+
+ public boolean hasChildren() {
+ return true; //must have children, or this object wouldn't be created
+ }
+
+ public IUiModelElement getParent() {
+ return _parent;
+ }
+
+ public Image getLabelImage() {
+ return OprofileUiPlugin.getImageDescriptor(OprofileUiPlugin.DEPENDENT_ICON).createImage();
+ }
+}

Back to the top