package com.shoes.beans;

public class shoes 
{
	public shoes()
	{
	}

	// Name
	
	public void setProdName(java.lang.String prodName)
	{
			this.prodName = prodName;
	}

	public java.lang.String getProdName()
	{
		return this.prodName;
	}
	
	public void setColors(java.lang.String colors)
	{
			this.colors = colors;
	}

	public java.lang.String getColors()
	{
		return this.colors;
	}
	
	public void setFeatures(java.lang.String features)
	{
			this.colors = features;
	}

	public java.lang.String getFeatures()
	{
		return this.features;
	}
	
	
	
	java.lang.String prodName = "The best shoes in the world";
	java.lang.String colors = "a range of colors";
	java.lang.String features = "comfortable, long-wearing and affordable";


}
