KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > marshalltest > _arrays > DoubleArray


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.2_01, build R40)
4
// Generated source version: 1.1.2
5

6 package org.jboss.test.webservice.marshalltest._arrays;
7
8
9 public class DoubleArray {
10     private double[] value;
11     
12     public DoubleArray() {
13     }
14     
15     public DoubleArray(double[] sourceArray) {
16         value = sourceArray;
17     }
18     
19     public void fromArray(double[] sourceArray) {
20         this.value = sourceArray;
21     }
22     
23     public double[] toArray() {
24         return value;
25     }
26     
27     public double[] getValue() {
28         return value;
29     }
30     
31     public void setValue(double[] value) {
32         this.value = value;
33     }
34 }
35
Popular Tags