KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > exception > _arrays > IntArray


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

5 /*
6   * JBoss, Home of Professional Open Source
7   * Copyright 2005, JBoss Inc., and individual contributors as indicated
8   * by the @authors tag. See the copyright.txt in the distribution for a
9   * full listing of individual contributors.
10   *
11   * This is free software; you can redistribute it and/or modify it
12   * under the terms of the GNU Lesser General Public License as
13   * published by the Free Software Foundation; either version 2.1 of
14   * the License, or (at your option) any later version.
15   *
16   * This software is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   * Lesser General Public License for more details.
20   *
21   * You should have received a copy of the GNU Lesser General Public
22   * License along with this software; if not, write to the Free
23   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
25   */

26 package org.jboss.test.webservice.exception._arrays;
27
28
29 public class IntArray {
30     private int[] value;
31     
32     public IntArray() {
33     }
34     
35     public IntArray(int[] sourceArray) {
36         value = sourceArray;
37     }
38     
39     public void fromArray(int[] sourceArray) {
40         this.value = sourceArray;
41     }
42     
43     public int[] toArray() {
44         return value;
45     }
46     
47     public int[] getValue() {
48         return value;
49     }
50     
51     public void setValue(int[] value) {
52         this.value = value;
53     }
54 }
55
Popular Tags