group.java

来自「java写的qq代码实现qq的部分功能」· Java 代码 · 共 84 行

JAVA
84
字号
/** * This class was generated from a set of XML constraints *   by the Enhydra Zeus XML Data Binding Framework. All *   source code in this file is constructed specifically *   to work with other Zeus-generated classes. If you *   modify this file by hand, you run the risk of breaking *   this interoperation, as well as introducing errors in *   source code compilation. * * * * * * MODIFY THIS FILE AT YOUR OWN RISK * * * * * * * To find out more about the Enhydra Zeus framework, you *   can point your browser at <http://zeus.enhydra.org> *   where you can download releases, join and discuss Zeus *   on user and developer mailing lists, and access source *   code. Please report any bugs through that website. */package edu.tsinghua.lumaqq.xml.groups;// Global Interface Import Statementsimport java.io.*;// Local Interface Import Statementsimport java.util.List;import java.io.Serializable;public interface Group extends Serializable {    public static final String ZEUS_XML_NAME = "Group";    public static final String[] ZEUS_ATTRIBUTES = {"upload", "blacklist", "name", "isCluster", "friendly", "visible"};    public static final String[] ZEUS_ELEMENTS = {"Friend", "Cluster"};    public List getFriendList();    public void setFriendList(List FriendList);    public void addFriend(Friend friend);    public void removeFriend(Friend friend);    public List getClusterList();    public void setClusterList(List ClusterList);    public void addCluster(Cluster cluster);    public void removeCluster(Cluster cluster);    public String getUpload();    public void setUpload(String upload)       throws IllegalArgumentException;    public String getBlacklist();    public void setBlacklist(String blacklist)       throws IllegalArgumentException;    public String getName();    public void setName(String name);    public String getIsCluster();    public void setIsCluster(String isCluster)       throws IllegalArgumentException;    public String getFriendly();    public void setFriendly(String friendly)       throws IllegalArgumentException;    public String getVisible();    public void setVisible(String visible)       throws IllegalArgumentException;    public void marshal(File file) throws IOException;    public void marshal(OutputStream outputStream) throws IOException;    public void marshal(Writer writer) throws IOException;    public void setDocType(String name, String publicID, String systemID);    public void setOutputEncoding(String outputEncoding);}

⌨️ 快捷键说明

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