Skip to content

Instantly share code, notes, and snippets.

@keiono
Created August 2, 2012 00:57
Show Gist options
  • Save keiono/3232062 to your computer and use it in GitHub Desktop.
Save keiono/3232062 to your computer and use it in GitHub Desktop.
public class VisualMappingFunctionChageDetails<T> {
private final Class<? extends VisualMappingFunction<?, T>> type;
public VisualMappingFunctionChageDetails(final Class<? extends VisualMappingFunction<?, T>> mappingType) {
this.type = mappingType;
}
public Class<? extends VisualMappingFunction<?, T>> getMappingType() {
return type;
}
public Map<?, T> getDiscreteChangedValues() {
return null;
}
public ContinuousMappingPoint<?, T> getAddedContinuousMappingPoint() {
return null;
}
public ContinuousMappingPoint<?, T> getRemovedContinuousMappingPoint() {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment