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

📄 imageinfo.java

📁 java写的图片浏览器,类似acds
💻 JAVA
字号:
package org.net9.oops.jsee;//import java.util.Calendar;import javax.swing.ImageIcon;/** * <p> * This class contain the information a file * </p> * @author Neoya M <neoyaa@yahoo.com> * @version 2002-03-09 */public class ImageInfo {    private ImageIcon imageIcon;    private String  name;    private Long    size;    private String  date;    private String  type;    private String  property;    static final Long LONG_ZERO=new Long(0);    static final Long LONG_ONE=new Long(1);    public ImageIcon getImageIcon(){        return imageIcon;    }    public String getName(){        return name;    }    public Long getSize(){        return size;    }    public String getDate(){        return date;    }    public String getType(){        return type;    }    public String getProperty(){        return property;    }    //    public void setImageIcon(ImageIcon icon){        this.imageIcon=icon;    }    public void setName(String name){        this.name=name;    }    public void setSize(Long size){        this.size=size;    }    public void setDate(String date){        this.date=date;    }    public void setType(String type){        this.type=type;    }    public void setProperty(String property){        this.property=property;    }}

⌨️ 快捷键说明

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