This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class SampleChild extends Sample<Integer> { | |
| public SampleChild(int size) { | |
| super(size); | |
| } | |
| public void putItems(Integer data) { | |
| super.putItems(data); | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class SampleChild extends Sample { | |
| public void putItem(Object data) { | |
| putItem((Integer)data); | |
| } | |
| public void putItem(Integer val) { | |
| super.putItem(val); | |
| } |
OlderNewer