Project

General

Profile

Download (477 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * 
3
 */
4
package eu.etaxonomy.cdm.io.berlinModel;
5

    
6
import eu.etaxonomy.cdm.io.common.CdmIoMapperBase;
7

    
8
/**
9
 * @author a.mueller
10
 *
11
 */
12
public class CdmBooleanMapper extends CdmIoMapperBase {
13

    
14
	/**
15
	 * @param dbAttributString
16
	 * @param cdmAttributeString
17
	 */
18
	public CdmBooleanMapper(String dbAttributString, String cdmAttributeString) {
19
		super(dbAttributString, cdmAttributeString);
20
	}
21

    
22
	public Class getTypeClass(){
23
		return Boolean.class;
24
	}
25
}
(15-15/16)