⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 schoolcalendarwidget.java

📁 Google Web Toolkit (GWT)
💻 JAVA
字号:
/* * Copyright 2007 Google Inc. *  * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *  * http://www.apache.org/licenses/LICENSE-2.0 *  * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */package com.google.gwt.sample.dynatable.client;import com.google.gwt.core.client.GWT;import com.google.gwt.user.client.Command;import com.google.gwt.user.client.DeferredCommand;import com.google.gwt.user.client.rpc.AsyncCallback;import com.google.gwt.user.client.rpc.ServiceDefTarget;import com.google.gwt.user.client.ui.Composite;/** * A Composite widget that abstracts a DynaTableWidget and a data provider tied * to the <@link SchoolCalendarService> RPC endpoint. */public class SchoolCalendarWidget extends Composite {  /**   * A data provider that bridges the provides row level updates from the data   * available through a <@link SchoolCalendarService>.   */  public class CalendarProvider implements DynaTableDataProvider {    private final SchoolCalendarServiceAsync calService;    private int lastMaxRows = -1;    private Person[] lastPeople;    private int lastStartRow = -1;    public CalendarProvider() {      // Initialize the service.      //      calService = (SchoolCalendarServiceAsync) GWT.create(SchoolCalendarService.class);      // By default, we assume we'll make RPCs to a servlet, but see      // updateRowData(). There is special support for canned RPC responses.      // (Which is a totally demo hack, by the way :-)      //       ServiceDefTarget target = (ServiceDefTarget) calService;      // Use a module-relative URLs to ensure that this client code can find      // its way home, even when the URL changes (as might happen when you      // deploy this as a webapp under an external servlet container).      String moduleRelativeURL = GWT.getModuleBaseURL() + "calendar";      target.setServiceEntryPoint(moduleRelativeURL);    }    public void updateRowData(final int startRow, final int maxRows,        final RowDataAcceptor acceptor) {      // Check the simple cache first.      //      if (startRow == lastStartRow) {        if (maxRows == lastMaxRows) {          // Use the cached batch.          //          pushResults(acceptor, startRow, lastPeople);          return;        }      }      // Fetch the data remotely.      //      calService.getPeople(startRow, maxRows, new AsyncCallback<Person[]>() {        public void onFailure(Throwable caught) {          acceptor.failed(caught);        }        public void onSuccess(Person[] result) {          lastStartRow = startRow;          lastMaxRows = maxRows;          lastPeople = result;          pushResults(acceptor, startRow, result);        }      });    }    private void pushResults(RowDataAcceptor acceptor, int startRow,        Person[] people) {      String[][] rows = new String[people.length][];      for (int i = 0, n = rows.length; i < n; i++) {        Person person = people[i];        rows[i] = new String[3];        rows[i][0] = person.getName();        rows[i][1] = person.getDescription();        rows[i][2] = person.getSchedule(daysFilter);      }      acceptor.accept(startRow, rows);    }  }  private final CalendarProvider calProvider = new CalendarProvider();  private final boolean[] daysFilter = new boolean[] {      true, true, true, true, true, true, true};  private final DynaTableWidget dynaTable;  private Command pendingRefresh;  public SchoolCalendarWidget(int visibleRows) {    String[] columns = new String[] {"Name", "Description", "Schedule"};    String[] styles = new String[] {"name", "desc", "sched"};    dynaTable = new DynaTableWidget(calProvider, columns, styles, visibleRows);    initWidget(dynaTable);  }  protected boolean getDayIncluded(int day) {    return daysFilter[day];  }  @Override  protected void onLoad() {    dynaTable.refresh();  }  protected void setDayIncluded(int day, boolean included) {    if (daysFilter[day] == included) {      // No change.      //      return;    }    daysFilter[day] = included;    if (pendingRefresh == null) {      pendingRefresh = new Command() {        public void execute() {          pendingRefresh = null;          dynaTable.refresh();        }      };      DeferredCommand.addCommand(pendingRefresh);    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -