Sha256: 70d1150abe16811447a87e20a3bc2e97733dadae92d07fce4803c1d7e7b0100e
Contents?: true
Size: 391 Bytes
Versions: 1
Compression:
Stored size: 391 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.spreadsheet; import java.util.List; public interface Row { List<String> getColumns(); int getId(); void setColumns(List<String> columns); void setId(int id); }
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/spreadsheet/Row.java |