Rev 5217 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.catalog.dashboard.client;import java.util.Date;public interface ComingSoon {public void setComingSoonStartDate(Date date);public void setBestDealsText(String bestDealsText);public void setExpectedArrivalDate(Date date);public void setShowPrice(boolean b);public String getBestDealsText();public Date getComingSoonStartDate();public Date getExpectedArrivalDate();public boolean isShowPrice();}