Class relationships: Correct Solution


Consider the follow class declarations:

public class Centuon {
    public List<Rorkis> getStos() {
        ...
    }

    public List<Clec> getPaCaacs() {
        ...
    }
}

public class Clec {
    public List<String> getAePiape() {
        ...
    }
}

public class Fishho {
    public int getGuc() {
        ...
    }

    public File getCofo() {
        ...
    }
}

public class KroChod extends Centuon {
    public Prething getCanas() {
        ...
    }
}

public class Prething {
    public String getCial() {
        ...
    }
}

public class Rorkis {
    public byte[] getLiad() {
        ...
    }

    public Fishho getWuade() {
        ...
    }
}
  1. Draw a diagram showing the class relationships.

    You only need to diagram the classes listed above. You only need to show the name of each class; do not show their methods or properties.

    Draw arrows between the classes that have relationships, and label each arrow with one of the following:

    Make sure your arrows point in the correct direction!

    Solution

  2. Given the following variable:

    KroChod deng

    ...and the following method:

    public void process(File item)

    ...write code to process the cofo of each sto of deng.

    Solution

    process(deng.getCentuon().getStos().get(0).getWuade().getCofo());

Related puzzles: