6 lines
87 B
Java
6 lines
87 B
Java
package org.behavior;
|
|
|
|
public interface Chargeable {
|
|
void charge(double amount);
|
|
}
|