Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/daemon/OpUnitMask.java')
-rw-r--r--oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/daemon/OpUnitMask.java22
1 files changed, 16 insertions, 6 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/daemon/OpUnitMask.java b/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/daemon/OpUnitMask.java
index 22740cd0fd..89c068ec00 100644
--- a/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/daemon/OpUnitMask.java
+++ b/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/daemon/OpUnitMask.java
@@ -58,20 +58,30 @@ public class OpUnitMask {
public static final int BITMASK = 3;
- // The current value of this unitmask
+ /**
+ * The current value of this unitmask
+ */
private int mask;
- // The default mask provided by the oprofile library
+ /**
+ * The default mask provided by the oprofile library
+ */
private int defaultMask;
- // The type of this unitmask
+ /**
+ * The type of this unitmask
+ */
private int maskType;
- // Descriptions of the bits of this mask
+ /**
+ * Descriptions of the bits of this mask
+ */
private String[] maskOptionDescriptions = new String[0];
- // mask values -- now bit masks have distinct values (eg: an all of the
- // above)
+ /**
+ * mask values -- now bit masks have distinct values (eg: an all of the above)
+ */
+
private int[] maskOptionValues;
/**

Back to the top