1 15 16 package org.objectweb.jac.core.dist.utils; 17 18 import java.io.Serializable ; 19 20 27 28 public class DistdArray implements Serializable { 29 30 31 String componentTypeName; 32 33 34 int length; 35 36 public DistdArray( String componentTypeName, int length ) { 37 this.componentTypeName = componentTypeName; 38 this.length = length; 39 } 40 41 public String getComponentTypeName() { return componentTypeName; } 42 public int getLength() { return length; } 43 } 44 | Popular Tags |