/** * */ package zendo.playground.sse.cloning; /** * * * @author mocanu */ public class BlackSheep extends Sheep { private int degreeOfBlack; /** * Returns the degreeOfBlack * * @return the degreeOfBlack */ public int getDegreeOfBlack() { return degreeOfBlack; } /** * Sets the degreeOfBlack to the given value. * * @param degreeOfBlack * the degreeOfBlack to set */ public void setDegreeOfBlack( int degreeOfBlack ) { this.degreeOfBlack = degreeOfBlack; } }