Source code: com/prolifics/ejb/SmWSIntArrayHolder.java
1 /* @(#)SmWSIntArrayHolder.java 77.2 00/02/25 14:44:39 */
2
3 /*************************************************/
4 /* Copyright (c) 2000 */
5 /* by */
6 /* JYACC, Inc., New York NY USA */
7 /* and contributors. */
8 /* Use of this program is governed by the */
9 /* JYACC Public License Version 1.0, a copy of */
10 /* which can be obtained at */
11 /* http://www.possl.org/jyacc-license.html */
12 /*************************************************/
13
14 package com.prolifics.ejb;
15
16 public class SmWSIntArrayHolder implements java.io.Serializable
17 {
18 public int[] value;
19 public SmWSIntArrayHolder() { }
20 public SmWSIntArrayHolder(int[] value) { this.value = value; }
21 }