diff options
author | Nigel Hawkins <n.hawkins@gmx.com> | 2010-10-28 10:05:32 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-29 11:54:31 +0100 |
commit | 11de9d98792473ba7267cf38ac4620c7b69e7ed2 (patch) | |
tree | e7e280e91c3d22f744a31421098ab792ca26da7d /xmerge | |
parent | eea0b725c26dc1d49f12e1f2255170795f3d3b25 (diff) |
Fix javadoc comments in NameDefinition.java
Diffstat (limited to 'xmerge')
-rw-r--r-- | xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/NameDefinition.java | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/NameDefinition.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/NameDefinition.java index de83543fd86e..b0ae4e6e1721 100644 --- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/NameDefinition.java +++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/NameDefinition.java @@ -68,8 +68,13 @@ public class NameDefinition implements OfficeConstants { } /** - * Default Constructor for a <code>NameDefinition</code> + * Constructor for a <code>NameDefinition</code> * + * @param name Name that identifies the definition + * @param definition The definition itself + * @param baseCellAddress The base cell address + * @param rangeType True if definition of range type + * @param expressionType True if definition of expression type */ public NameDefinition(String name, String definition, String baseCellAddress, boolean rangeType, boolean expressionType ) { @@ -139,8 +144,8 @@ public class NameDefinition implements OfficeConstants { /** * Writes out a content.xml entry for this NameDefinition object * - * @param settings a <code>Document</code> object representing the settings.xml - * @param root the root xml node to add to + * @param doc A <code>Document</code> object representing the settings.xml + * @param root The root xml node to add to */ public void writeNode(org.w3c.dom.Document doc, Node root) { |