⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 photoalbum.java

📁 国外的j2me播放器软件
💻 JAVA
字号:
package no.auc.one.portableplayer.lms;

import java.io.*;

public class PhotoAlbum extends Album {
    private final static String CLASSTYPE = "object.container.album.photoAlbum";

    public String classType() {
        return CLASSTYPE;
    }

	public PhotoAlbum(
		int id, 
		int parentId, 
		String title, 
		boolean restricted) 
	{
		super(id, parentId, title, restricted);
	}

    public PhotoAlbum(DataInput di) throws IOException {
        super(di);
    }
    
    public void serialize(DataOutput dout) throws IOException {
        super.serialize(dout);
    }

    public void serializeXml(PrintStream ps) {
        super.serializeXml(ps);
    }
}

⌨️ 快捷键说明

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