1 57 58 package org.apache.wsif.compiler.schema.tools; 59 60 65 public class ClassField { 66 67 String fieldType; 68 boolean isArray; 69 String fieldName; 70 71 78 public ClassField(String fieldType, String fieldName, boolean isArray) { 79 80 if (fieldType == null) 81 this.fieldType = ""; 82 else 83 this.fieldType = fieldType; 84 this.fieldName = fieldName; 85 this.isArray = isArray; 86 } 87 } | Popular Tags |