@@ -20,7 +20,7 @@ public class Parameter {
2020 private int maxOccurs = 1 ;
2121 protected boolean IsNillable ;
2222 protected boolean IsAttribute ;
23-
23+
2424 private Parameter [] children = null ;
2525 private Option [] options = null ;
2626 private Node parentNode ;
@@ -149,12 +149,14 @@ public Object getValue(){
149149 * between the value and the parameter data type, this method will attempt
150150 * to convert the value to the correct datatype. For example, if a byte[]
151151 * array is given for a base64Binary parameter, the array is converted to a
152- * base64 encoded string. <p/>
152+ * base64 encoded string.
153+ * <p>
153154 * This method is intended for parameters with simple types. For complex
154155 * types, use the getChildren() method and set values for the composite
155156 * parameters individually. Alternatively, you can pass a properly formed
156157 * xml fragment (string) which will be used, without modification, in the
157158 * SOAP/XML request.
159+ * </p>
158160 * @param val Accepts either an array or a single instance of byte, string,
159161 * boolean, double, float, int, short, long, decimal, java.util.Date,
160162 * javaxt.utils.Date, java.io.File, and javaxt.io.File.
@@ -165,7 +167,7 @@ public void setValue(Object val){
165167 value = null ;
166168 return ;
167169 }
168-
170+
169171 if (isComplex ()){
170172 if (val instanceof String ){
171173 String str = (String ) val ;
@@ -271,7 +273,7 @@ else if (type.equalsIgnoreCase("string")){
271273 * SOAP request.
272274 */
273275 protected String toXML (String attributes , String ns ){
274-
276+
275277 if (ns !=null ) ns = ns .trim ();
276278 else ns = "" ;
277279
@@ -285,7 +287,7 @@ protected String toXML(String attributes, String ns){
285287
286288 if (value instanceof byte []){
287289 xml .append ("<" + name + attributes + ">" );
288- xml .append (javaxt .utils .Base64 .encode ((byte []) value ));
290+ xml .append (javaxt .utils .Base64 .encode ((byte []) value ));
289291 xml .append ("</" + name + ">" );
290292 }
291293 else if (value instanceof Object []){
0 commit comments