Sha256: 00dbb42e5449d82897ce1aee3be52fbb87d894d00ef109e77fc9183b7c075325

Contents?: true

Size: 947 Bytes

Versions: 1

Compression:

Stored size: 947 Bytes

Contents

/**
 * Sencha GXT 3.1.1 - Sencha for GWT
 * Copyright(c) 2007-2014, Sencha, Inc.
 * licensing@sencha.com
 *
 * http://www.sencha.com/products/gxt/license/
 */
package com.dldinternet.aws.cfn.stacker.desktopapp.client;

import com.google.web.bindery.autobean.shared.AutoBean;
import com.google.web.bindery.autobean.shared.AutoBeanFactory;
import com.google.web.bindery.autobean.shared.AutoBeanFactory.Category;
import com.dldinternet.aws.cfn.stacker.desktopapp.client.persistence.AutoBeanToString;

/**
 * Uses the GWT auto bean factory framework to create a factory capable of
 * vending profile model auto beans.
 * 
 * @see com.google.web.bindery.autobean.shared.AutoBeanFactory
 */
@Category(AutoBeanToString.class)
public interface ProfileFactory extends AutoBeanFactory {

  /**
   * Creates an auto bean that wraps a profile model.
   * 
   * @return an auto bean that wraps a profile model
   */
  AutoBean<ProfileModel> profileModel();

}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aws-cfn-stacker-0.0.6 ui/src/com/dldinternet/aws/cfn/stacker/desktopapp/client/ProfileFactory.java