testdata for IDEA-54197

This commit is contained in:
anna
2013-10-23 13:43:42 +02:00
parent 1d08cd4400
commit 9ba5f92262
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,15 @@
import java.util.*;
abstract class GenericPanelControl {
protected abstract void _performAction(List<?> rowVector);
}
class WorkflowPanelControl extends GenericPanelControl {
protected void _performAction(List rowVector) {
}
}
class WorkflowSubPanelControl extends WorkflowPanelControl {
protected void _performAction(List rowVector) {
super._performAction(rowVector);
}
}