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

org.jboss.forge.convert.AbstractConverter Maven / Gradle / Ivy

The newest version!
package org.jboss.forge.convert;

public abstract class AbstractConverter implements Converter
{

   private Class sourceType;
   private Class targetType;

   public AbstractConverter(Class sourceType, Class targetType)
   {
      super();
      this.sourceType = sourceType;
      this.targetType = targetType;
   }

   public Class getSourceType()
   {
      return sourceType;
   }

   public Class getTargetType()
   {
      return targetType;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy