1 21 package com.jaspersoft.jasperserver.war.dto; 22 23 import com.jaspersoft.jasperserver.api.metadata.common.domain.DataType; 24 25 public class DataTypeWrapper extends BaseDTO 26 { 27 28 private DataType dataType; 29 30 public DataTypeWrapper(DataType dataType) 31 { 32 this.dataType = dataType; 33 } 34 35 36 public DataType getDataType() 37 { 38 return dataType; 39 } 40 41 public void setDataType(DataType dataType) 42 { 43 this.dataType = dataType; 44 } 45 } 46 | Popular Tags |