can someone help with my code it won’trun
/**
* – A system that allows farmers to be alerted of their animalsthat have gone astray from their farms or cattle posts.
* The system should allow adding of spotted animals by members ofthe public.
* The system should allow registered Farmers to view and searchanimals using their brands or ear tag number.
* Once an animal has been reclaimed by its owner the system shouldallow removing animals from the system.
*
* @author (Candy )
* @version (29/03/2019)
*/
public class Cattle
{
// instance variables – replace the example below with yourown
private int cattleNumber;
private String cattleOwner;
private boolean availability=true;
// by this ,
OR
OR