1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.vci.client.ui.swing.filechooser;
|
| /** 文件选择时的图片类型的文件过滤器
| * <p>Title:</p>
| * <p>Description:</p>
| * <p>Copyright: Copyright (C) 2011 </p>
| * <p>Company: VCI </p>
| * @author Bear
| * @time 2011-8-1
| * @version 1.0
| */
| public class ImageFileFilter extends AbstractFileFilter {
| public ImageFileFilter(){
| this(new String[]{".jpe", ".jpeg", ".bmp", ".gif", ".png" }, "Image Files");
| }
| public ImageFileFilter(String[] suffixs, String descs) {
| super(suffixs, descs);
| }
| }
|
|