@Override
public CreatorProperty[] getFromObjectArguments(DeserializationConfig config) {
JavaType intType = config.constructType(Integer.TYPE);
JavaType longType = config.constructType(Long.TYPE);
return new CreatorProperty[] {
new CreatorProperty("sourceRef", config.constructType(Object.class), null, null, null, 0, null),
new CreatorProperty("byteOffset", longType, null, null, null, 1, null),
new CreatorProperty("charOffset", longType, null, null, null, 2, null),
new CreatorProperty("lineNr", intType, null, null, null, 3, null),
new CreatorProperty("columnNr", intType, null, null, null, 4, null)
};
}