📄 iteminterface.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.eonline.model;import java.util.List;/** * * @author Administrator */public interface ItemInterface { //Return a read-only reference the Collection of ExamItems in the library public List getItemList(); // Given a username, a year and a genre, // 1.) create a new item, // 2.) add the new item to the library public void addItem(String username, Item1 item); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -