this exercise step says...
For the Package field, either enter myonlineshop or choose
myonlineshop from the drop-down menu.


but the code says...
package myonlineshopusinginterface;

public interface BookInterface extends ProductInterface {
    public String getPublisher();
    public void setPublisher(String publisher);
    public int getYearPublished();
    public void setYearPublished(int yearPublished);
}



i'd like to use multiple packages in the same project, but i don't
know how, and don't think we've covered that yet.

-- 
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/javaprogrammingwithpassion?hl=en

Reply via email to