is it possible to crate a generic method in interfaces?
say i want to create an interface
public interface Merge {
public void merge(Object host, Object other);
}
then i want the implementing class to implement this, but define the type of host and other.
e.g.
public class FooBazMerge implements Merge {
public void merge(Foo host, Baz other){
// merge some properties
}
}
the reason why i want to do this is so that i can do something like this
public class SomeObject {
private Merge merge;
private Foo foo;
private Baz baz;
public setMerge(Merge merge){
this.merge = merge
}
public void merge(SomeObject anotherObject){
merge.merge(this.foo, anotherObject.getBaz());
}
}
i basically want to delegate the merging responsibility/logic of someObject to FooBazMerge. that way i can change the implementation of how it's merged without having to muck with the domain models everytime an adjustment needs to be made.
