public class Board extends JPanel implements ActionListener {
private Card[] cardChecker = new Card[2];
... some code
}
For example class Board is declaring an array type of Card which is a class that I wrote. Is it Aggregation or Composition?