1 15 package org.apache.hivemind.schema.rules; 16 17 import org.apache.hivemind.Location; 18 import org.apache.hivemind.internal.Module; 19 import org.apache.hivemind.schema.Translator; 20 21 27 public class NullTranslator implements Translator 28 { 29 32 public Object translate(Module contributingModule, Class propertyType, String inputValue, 33 Location location) 34 { 35 return inputValue; 36 } 37 } 38 | Popular Tags |