SimplePart.java

package ProductConfig;
import java.util.Vector;
public class SimplePart extends BasicPart
{
SimplePart(String name, String description, double price)
{
    super(name, description, price);
}

public void addPart(Part part) throws NotACompositeException
{
    throw new NotACompositeException();
}

public void removePart(Part part) throws NotACompositeException
{
    throw new NotACompositeException();
}

}

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.15.156.140