All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sencha.gxt.theme.gray.client.field.GrayFieldSetAppearance Maven / Gradle / Ivy

There is a newer version: 3.1.1
Show newest version
/**
 * Sencha GXT 3.1.0 - Sencha for GWT
 * Copyright(c) 2007-2014, Sencha, Inc.
 * [email protected]
 *
 * http://www.sencha.com/products/gxt/license/
 */
package com.sencha.gxt.theme.gray.client.field;

import com.google.gwt.core.client.GWT;
import com.sencha.gxt.theme.base.client.field.FieldSetDefaultAppearance;

public class GrayFieldSetAppearance extends FieldSetDefaultAppearance {

  public interface GrayFieldSetResources extends FieldSetResources {
    
    @Override
    @Source({"com/sencha/gxt/theme/base/client/field/FieldSet.css", "GrayFieldSet.css"})
    public GrayFieldSetStyle css();
  }
  
  public interface GrayFieldSetStyle extends FieldSetStyle {
    
  }
  
  
  public GrayFieldSetAppearance() {
    this(GWT.create(GrayFieldSetResources.class));
  }
  
  public GrayFieldSetAppearance(GrayFieldSetResources resources) {
    super(resources);
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy