Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbateman2007-09-24 23:23:34 +0000
committercbateman2007-09-24 23:23:34 +0000
commit1ace23867a6253a68257f38e994fa30b28d37ec5 (patch)
tree80bbbe4baccd520d93774d28beea1bb419ae04dc /jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context
parent0c74d92580df33fec1a0fdd0011957fad50b1c9a (diff)
downloadwebtools.jsf-1ace23867a6253a68257f38e994fa30b28d37ec5.tar.gz
webtools.jsf-1ace23867a6253a68257f38e994fa30b28d37ec5.tar.xz
webtools.jsf-1ace23867a6253a68257f38e994fa30b28d37ec5.zip
Added docs, removed unnecessary toString call .
Diffstat (limited to 'jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context')
-rw-r--r--jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context/symbol/internal/impl/IBoundedListTypeDescriptorImpl.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context/symbol/internal/impl/IBoundedListTypeDescriptorImpl.java b/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context/symbol/internal/impl/IBoundedListTypeDescriptorImpl.java
index 4dd73dc44..7af15cb50 100644
--- a/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context/symbol/internal/impl/IBoundedListTypeDescriptorImpl.java
+++ b/jsf/plugins/org.eclipse.jst.jsf.common/src/org/eclipse/jst/jsf/context/symbol/internal/impl/IBoundedListTypeDescriptorImpl.java
@@ -2,7 +2,7 @@
* <copyright>
* </copyright>
*
- * $Id: IBoundedListTypeDescriptorImpl.java,v 1.4 2007/05/07 17:30:20 cbateman Exp $
+ * $Id: IBoundedListTypeDescriptorImpl.java,v 1.5 2007/09/24 23:23:34 cbateman Exp $
*/
package org.eclipse.jst.jsf.context.symbol.internal.impl;
@@ -110,6 +110,10 @@ public class IBoundedListTypeDescriptorImpl extends IListTypeDescriptorImpl impl
/**
* <!-- begin-user-doc -->
+ * @param methodName
+ * @param methodArguments
+ * @param symbolName
+ * @return a symbol representing the return value of the method
* <!-- end-user-doc -->
* @generated NOT
*/
@@ -139,7 +143,7 @@ public class IBoundedListTypeDescriptorImpl extends IListTypeDescriptorImpl impl
SymbolFactory.eINSTANCE.createIPropertySymbol();
// TODO: there is a possible problem here for non-string keyed maps
- propSymbol.setName(symbolName.toString());
+ propSymbol.setName(symbolName);
propSymbol.setReadable(true);
IJavaTypeDescriptor2 typeDesc =
SymbolFactory.eINSTANCE.createIJavaTypeDescriptor2();

Back to the top