abstract
일반적으로 해당 메서드를 상속하는 클래스에서 구현을 제공하도록 메서드 자체를 abstract로 선언하는 것이 더 좋은 설계입니다.
예:
abstract class Test { protected void doTest() { } }