Package com.tll.client.mvc.view.account

Source Code of com.tll.client.mvc.view.account.IspListingView$Class

/**
*
*/
package com.tll.client.mvc.view.account;

import com.tll.client.mvc.view.ListingView;
import com.tll.client.mvc.view.StaticViewInitializer;
import com.tll.client.ui.listing.IspListingWidget;

/**
* IspListingView
* @author jpk
*/
public final class IspListingView extends ListingView<StaticViewInitializer, IspListingWidget> {

  public static final Class klas = new Class();

  public static final class Class extends AbstractListingViewClass {

    @Override
    public String getName() {
      return "IspListingView";
    }

    @Override
    public IspListingView newView() {
      return new IspListingView();
    }
  }

  /**
   * Constructor
   */
  public IspListingView() {
    super();
  }

  @Override
  protected Class getViewClass() {
    return klas;
  }

  @Override
  protected void doInitialization(StaticViewInitializer init) {
    setListingWidget(new IspListingWidget());
  }

  @Override
  public String getLongViewName() {
    return "Isp Listing";
  }
}
TOP

Related Classes of com.tll.client.mvc.view.account.IspListingView$Class

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.