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

📄 todoimpl.java

📁 extjs加dwr加spring强强联姻
💻 JAVA
字号:
package com.scottwalter.sandbox.bsl.impl;import com.scottwalter.sandbox.bsl.ToDo;import com.scottwalter.sandbox.model.Author;import com.scottwalter.sandbox.model.ListRange;import com.scottwalter.sandbox.model.ToDoItem;public class ToDoImpl implements ToDo {	public ListRange getItems(String name, boolean flag, int start, int count,			String orderBy) {		System.out.println("start=" + start + ";count=" + count + ";name="				+ name + ";flag=" + flag);		ListRange listRange = new ListRange();		Object[] data = {				new ToDoItem(1, "item1", new Author("Scott", "Walter")),				new ToDoItem(2, "item2", new Author("Scott", "Walter")),				new ToDoItem(3, "item3", new Author("Scott", "Walter")),				new ToDoItem(4, "item4", new Author("Scott", "Walter")),				new ToDoItem(5, "item5", new Author("Scott", "Walter")) };		listRange.setData(data);		listRange.setTotalSize(5555);		return listRange;	}}

⌨️ 快捷键说明

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