Examples of Table


Examples of com.facebook.presto.sql.tree.Table

        return new Select(false, items);
    }

    public static List<Relation> table(QualifiedName name)
    {
        return ImmutableList.<Relation>of(new Table(name));
    }
View Full Code Here

Examples of com.flagstone.transform.action.Table

  private List<Action> rewriteActions(SWFUrlRewriter rw, List<Action> actions) {
    ArrayList<Action> newActions = new ArrayList<Action>();
    for (Action action : actions) {
      if (action instanceof Table) {

        Table table = (Table) action;
        table.setValues(rewriteStringValues(rw, table.getValues()));
        newActions.add(table);

      } else if (action instanceof Push) {

        Push push = (Push) action;
View Full Code Here

Examples of com.foundationdb.ais.model.Table

    }

    private static Table commonAncestor(Table inputTable, Table outputTable)
    {
        int minLevel = min(inputTable.getDepth(), outputTable.getDepth());
        Table inputAncestor = inputTable;
        while (inputAncestor.getDepth() > minLevel) {
            inputAncestor = inputAncestor.getParentTable();
        }
        Table outputAncestor = outputTable;
        while (outputAncestor.getDepth() > minLevel) {
            outputAncestor = outputAncestor.getParentTable();
        }
        while (inputAncestor != outputAncestor) {
            inputAncestor = inputAncestor.getParentTable();
            outputAncestor = outputAncestor.getParentTable();
        }
        return outputAncestor;
    }
View Full Code Here

Examples of com.google.api.services.bigquery.model.Table

    }
    log.warning(sb.toString());
  }

  public static Table createTable(String projectId, String datasetId, String tableId, TableSchema schema, Bigquery bigquery) throws IOException {
    Table table = new Table();

    TableReference tableRef = new TableReference();
    tableRef.setDatasetId(datasetId);
    tableRef.setProjectId(projectId);
    tableRef.setTableId(tableId);
    table.setTableReference(tableRef);
    table.setFriendlyName(tableId);
    table.setSchema(schema);

    try {
      return bigquery.tables().insert(projectId, datasetId, table).execute();
    }
    catch (GoogleJsonResponseException e) {
View Full Code Here

Examples of com.google.code.lightssh.common.web.tag.table.components.Table

  protected String dynamicCols;

  @Override
  public Component getBean(ValueStack stack, HttpServletRequest req,
      HttpServletResponse res) {
        Table table = new Table(stack, req, res);

        return table;
  }
View Full Code Here

Examples of com.google.common.collect.Table

    }

  protected void assertTableValuesEqual( String tableName, String sqlQuery ) throws Exception
    {
    TupleEntryIterator entryIterator = getTable( tableName );
    Table expectedTable = createTable( entryIterator, true );

    assertTableValuesEqual( expectedTable, sqlQuery );
    }
View Full Code Here

Examples of com.google.gwt.topspin.ui.client.Table

      super(parent);
      final HintletReport.Css css = getResources().hintletReportCss();
      this.hintletRecords = hintletRecords;
      this.reportModel = reportModel;
      this.setExpandIconVisible(false);
      subTable = new Table(new DefaultContainerImpl(this.getItemLabelElement()));
      subTable.setStyleName(css.reportRowDetailTable());
      headerRowElem = subTable.appendRow();
      String className = this.getContentElement().getClassName();
      this.getContentElement().setClassName(
          css.reportRowDetailContentElem() + " " + className);
View Full Code Here

Examples of com.google.gwt.visualization.client.visualizations.Table

          Window.alert("Error in query: " + response.getMessage() + ' '
              + response.getDetailedMessage());
          return;
        }

        Table viz = new Table();
        Table.Options options = Table.Options.create();
        options.setShowRowNumber(true);
        viz.draw(response.getDataTable(), options);
        Label status = new Label();
        viz.addSelectHandler(new SelectionDemo(viz, status));
        panel.add(viz);
        panel.add(status);
      }
    });
  }
View Full Code Here

Examples of com.googlecode.gwt.charts.client.table.Table

    }

    @Override
    public Widget createVisualization() {
        final DataTable dataTable = createTable();
        table = new Table();
        table.addSortHandler( new SortHandler() {
            @Override public void onSort( SortEvent sortEvent ) {
                String columnId = dataTable.getColumnId(sortEvent.getColumn());
                sortApply(columnId, sortInfo.getSortOrder(columnId));
                redraw();
View Full Code Here

Examples of com.healthmarketscience.jackcess.Table

        }
    }

    private static void updateEvents() throws IOException {
        try (Database db = DatabaseBuilder.open(new File("d:\\My Sport\\Snooker\\Info.mdb"))) {
            Table sevents = db.getTable("snooker_events");
            for (Map<String, Object> event : getEvents()) {
                sevents.addRowFromMap(event);
            }           
        }
    }
View Full Code Here
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.