All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dslplatform.json.processor.ConverterInfo Maven / Gradle / Ivy

There is a newer version: 1.49.0
Show newest version
package com.dslplatform.json.processor;

import javax.lang.model.element.TypeElement;
import javax.lang.model.type.TypeMirror;

public class ConverterInfo {
	public final TypeElement converter;
	public final String fullName;
	public final String reader;
	public final String writer;

	public ConverterInfo(TypeElement converter, String reader, String writer) {
		this.converter = converter;
		this.fullName = converter.getQualifiedName().toString();
		this.reader = reader;
		this.writer = writer;
	}
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy