Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/spi/ConfigurationElementDescription.java')
-rw-r--r--bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/spi/ConfigurationElementDescription.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/spi/ConfigurationElementDescription.java b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/spi/ConfigurationElementDescription.java
index d7545475f..f0def5707 100644
--- a/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/spi/ConfigurationElementDescription.java
+++ b/bundles/org.eclipse.equinox.registry/src/org/eclipse/core/internal/registry/spi/ConfigurationElementDescription.java
@@ -4,7 +4,7 @@
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -13,12 +13,12 @@ package org.eclipse.core.internal.registry.spi;
import org.eclipse.core.runtime.IConfigurationElement;
/**
- * Describes configuration elements (content of an extension) to be added to
- * the extension registry. Configuration element can contain attributes or
- * a String value. Configuration element can contain other configuration
+ * Describes configuration elements (content of an extension) to be added to
+ * the extension registry. Configuration element can contain attributes or
+ * a String value. Configuration element can contain other configuration
* elements (children).
* <p>
- * It is expected that configuration element's name is not null. Attributes and
+ * It is expected that configuration element's name is not null. Attributes and
* children of the extension description might be null; value might be null as well.
* </p>
* <p>
@@ -51,19 +51,19 @@ public final class ConfigurationElementDescription {
/**
* Children of the configuration element.
- * @see IConfigurationElement#getChildren()
+ * @see IConfigurationElement#getChildren()
*/
private ConfigurationElementDescription[] children;
/**
* Constructor.
- *
+ *
* @param name - name of the configuration element
* @param attributes - attributes of the configuration element. Might be null.
* @param value - string value to be stored. Might be null.
* @param children - children of the configuration element. Might be null.
* @see IConfigurationElement#getName()
- * @see IConfigurationElement#getChildren()
+ * @see IConfigurationElement#getChildren()
* @see IConfigurationElement#getAttribute(String)
* @see IConfigurationElement#getValue()
*/
@@ -76,13 +76,13 @@ public final class ConfigurationElementDescription {
/**
* Constructor.
- *
+ *
* @param name - name of the configuration element
* @param attribute - attribute of the configuration element. Might be null.
* @param value - string value to be stored. Might be null.
* @param children - children of the configuration element. Might be null.
* @see IConfigurationElement#getName()
- * @see IConfigurationElement#getChildren()
+ * @see IConfigurationElement#getChildren()
* @see IConfigurationElement#getAttribute(String)
* @see IConfigurationElement#getValue()
*/
@@ -96,7 +96,7 @@ public final class ConfigurationElementDescription {
/**
* Returns children of the configuration element.
* @return - children of the extension
- * @see IConfigurationElement#getChildren()
+ * @see IConfigurationElement#getChildren()
*/
public ConfigurationElementDescription[] getChildren() {
return children;

Back to the top