From 826e7e5d70450bd954d561024a497b4887dedfcf Mon Sep 17 00:00:00 2001
From: matthew_swift <matthew_swift@localhost>
Date: Thu, 19 Apr 2007 09:48:46 +0000
Subject: [PATCH] Fix for issue 1442.
---
opends/src/server/org/opends/server/admin/PropertyDefinition.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 51 insertions(+), 0 deletions(-)
diff --git a/opends/src/server/org/opends/server/admin/PropertyDefinition.java b/opends/src/server/org/opends/server/admin/PropertyDefinition.java
index f55f64b..59b434c 100644
--- a/opends/src/server/org/opends/server/admin/PropertyDefinition.java
+++ b/opends/src/server/org/opends/server/admin/PropertyDefinition.java
@@ -31,6 +31,7 @@
import java.io.Serializable;
import java.util.Comparator;
+import java.util.Locale;
@@ -178,6 +179,32 @@
/**
+ * Gets the optional description of this property definition in the
+ * default locale.
+ *
+ * @return Returns the description of this property definition in
+ * the default locale, or <code>null</code> if there is no
+ * description.
+ */
+ String getDescription();
+
+
+
+ /**
+ * Gets the optional description of this property definition in the
+ * specified locale.
+ *
+ * @param locale
+ * The locale.
+ * @return Returns the description of this property definition in
+ * the specified locale, or <code>null</code> if there is
+ * no description.
+ */
+ String getDescription(Locale locale);
+
+
+
+ /**
* Get the name of the property.
*
* @return Returns the name of the property.
@@ -187,6 +214,30 @@
/**
+ * Gets the synopsis of this property definition in the default
+ * locale.
+ *
+ * @return Returns the synopsis of this property definition in the
+ * default locale.
+ */
+ String getSynopsis();
+
+
+
+ /**
+ * Gets the synopsis of this property definition in the specified
+ * locale.
+ *
+ * @param locale
+ * The locale.
+ * @return Returns the synopsis of this property definition in the
+ * specified locale.
+ */
+ String getSynopsis(Locale locale);
+
+
+
+ /**
* Returns a hash code value for this property definition. The hash code
* should be derived from the property name.
*
--
Gitblit v1.10.0