countrymanager.java

来自「extjs sample with spring」· Java 代码 · 共 23 行

JAVA
23
字号
package demo.service;

import demo.domain.Country;
import demo.ajax.SortInfo;

import java.io.Serializable;
import java.util.List;

/**
 * @author Tim Sporcic
 * @version 1.0
 */
public interface CountryManager extends Serializable {

    /**
     * Get a List of the Countries based on the SortInfo        
     */
    List<Country> getCountryList(SortInfo sort);



}

⌨️ 快捷键说明

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