19 lines
465 B
Java
19 lines
465 B
Java
package impl;
|
|
|
|
import interfaces.AlgoDiffusion;
|
|
|
|
public class DiffusionAtomique implements AlgoDiffusion {
|
|
|
|
@Override
|
|
public void configure() {
|
|
// TODO Auto-generated method stub
|
|
throw new UnsupportedOperationException("Unimplemented method 'configure'");
|
|
}
|
|
|
|
@Override
|
|
public void execture() {
|
|
// TODO Auto-generated method stub
|
|
throw new UnsupportedOperationException("Unimplemented method 'execture'");
|
|
}
|
|
}
|