Sha256: cdbb7815c03b686988599a5f12365d68895a95721a672b11a435e6d881774724

Contents?: true

Size: 526 Bytes

Versions: 1

Compression:

Stored size: 526 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 com.google.web.bindery.autobean.shared.AutoBean;

public class TableCategory {
  public static int incrementNextRowId(AutoBean<Table> instance) {
    Table table = instance.as();
    int nextRowId = table.getNextRowId();
    table.setNextRowId(nextRowId + 1);
    return nextRowId;
  }
}

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/TableCategory.java