how to do this task. i am not able to understand how to define the owner
package com.codegym.task.task02.task0213;
/*
Pets need people
*/
public class Solution {
public static void main(String[] args) {
Cat kitty=new Cat();
Dog jack=new Dog();
Fish machli=new Fish();
Woman rustu=new Woman();
rustu=kitty.owner;
rustu=jack.owner;
rustu=machli.owner;
}
public static class Cat {
public Woman owner;
}
public static class Dog {
public Woman owner;
}
public static class Fish {
public Woman owner;
}
public static class Woman {
}
}