19 lines
421 B
Java
Raw Normal View History

2015-05-05 11:20:13 -07:00
//: patterns/doubledispatch/DDPaper.java
// Paper for double dispatching.
package patterns.doubledispatch;
import patterns.trash.*;
public class DDPaper extends Paper
implements TypedBinMember {
public DDPaper(double wt) { super(wt); }
@Override
public boolean addToBin(TypedBin[] tb) {
2015-05-05 14:05:39 -07:00
for (TypedBin tb1 : tb) {
if (tb1.add(this)) {
2015-05-05 11:20:13 -07:00
return true;
2015-05-05 14:05:39 -07:00
}
}
2015-05-05 11:20:13 -07:00
return false;
}
} ///:~