summaryrefslogtreecommitdiff
path: root/ridljar/com/sun/star/uno/Enum.java
diff options
context:
space:
mode:
Diffstat (limited to 'ridljar/com/sun/star/uno/Enum.java')
-rw-r--r--ridljar/com/sun/star/uno/Enum.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/ridljar/com/sun/star/uno/Enum.java b/ridljar/com/sun/star/uno/Enum.java
index 0203347adb53..53615cb87c5f 100644
--- a/ridljar/com/sun/star/uno/Enum.java
+++ b/ridljar/com/sun/star/uno/Enum.java
@@ -21,18 +21,18 @@ package com.sun.star.uno;
/**
* The Enum class is the base class for all classes generated
* as java binding for the IDL type enum.
+ * <p>
* Each java mapped enum class provides static member of this class
* which represents the enum values.
* You cannot create a object of this class or subclass direct, to
* avoid enum values with integer values outside the defined range.
- * <p>
+ * </p>
*/
public abstract class Enum {
private int m_value;
/**
* Constructs a enum value.
- * <p>
* @param value the integer value of this enum value.
*/
protected Enum(int value) {
@@ -41,7 +41,6 @@ public abstract class Enum {
/**
* Get the integer value of an enum value.
- * <p>
* @return the integer value.
*/
public final int getValue() {