Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by michaeljames ( 5 years ago )
/**
* This class builds the variables of a fan
*
* @mjames
* @1/5/2021
*/
public class Fan
{
private String brand, color;
public Fan()
{
brand = "dyson";
color = "black";
}
public Fan(String b, String c)
{
this.brand = b;
this.color = c;
}
public String getBrand()
{
return this.brand;
}
public String getColor()
{
return this.color;
}
public void setBrand(String b)
{
this.brand = b;
}
public void setColor(String c)
{
this.color = c;
}
public String toString()
{
return "this " + this.getBrand() + " fan is " + this.getColor();
}
}
Revise this Paste