• 大小: 16KB
    文件类型: .java
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: Java
  • 标签: pim+  gui  

资源简介

西电软院12级15年上机的界面编程部分,可以实现简单的备忘录,但需要加入到之前上机代码中哦

资源截图

代码片段和文件信息

 
/** @author13121230 成李英
  */
import javax.swing.*;

import java.awt.*;

import javax.swing.text.*;

import java.util.*;
import java.awt.event.*;
 
interface RemotePIMCollection {
 
//    public PIMCollection getNotes();
    public PIMCollection getNotes(String owner);
 
//    public PIMCollection getTodos();
    public PIMCollection getTodos(String owner);
 
//    public PIMCollection getAppointment();
    public PIMCollection getAppointments(String owner);
 
//    public PIMCollection getContacts();
    public PIMCollection getContacts(String owner);
 
//    public PIMCollection getItemsForDate(Date d);
    public PIMCollection getItemsForDate(String d String owner);
 
//    public PIMCollection getAll();
    public PIMCollection getAllByOwner(String owner

评论

共有 条评论