1 11 12 package org.eclipse.jface.internal.databinding.provisional.conversion; 13 14 15 19 public abstract class Converter implements IConverter { 20 21 private Class fromType; 22 private Class toType; 23 24 28 public Converter(Class fromType, Class toType) { 29 this.fromType = fromType; 30 this.toType = toType; 31 } 32 33 public Object getFromType() { 34 return fromType; 35 } 36 37 public Object getToType() { 38 return toType; 39 } 40 41 } 42 | Popular Tags |