📄 cluster.java
字号:
/*
* 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 Statements
import java.io.*;
// Local Interface Import Statements
import java.util.List;
import java.io.Serializable;
public interface Cluster extends Serializable {
public static final String ZEUS_XML_NAME = "Cluster";
public static final String[] ZEUS_ATTRIBUTES = {"name", "category", "creator", "externalId", "authType", "face", "type", "notice", "description", "clusterId", "message"};
public static final String[] ZEUS_ELEMENTS = {"Friend"};
public List getFriendList();
public void setFriendList(List FriendList);
public void addFriend(Friend friend);
public void removeFriend(Friend friend);
public String getName();
public void setName(String name);
public String getCategory();
public void setCategory(String category);
public String getCreator();
public void setCreator(String creator);
public String getExternalId();
public void setExternalId(String externalId);
public String getAuthType();
public void setAuthType(String authType);
public String getFace();
public void setFace(String face);
public String getType();
public void setType(String type);
public String getNotice();
public void setNotice(String notice);
public String getDescription();
public void setDescription(String description);
public String getClusterId();
public void setClusterId(String clusterId);
public String getMessage();
public void setMessage(String message)
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -