?? reportlist.java
字號:
// Decompiled by DJ v3.7.7.81 Copyright 2004 Atanas Neshkov Date: 2008-6-14 13:29:32
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: ReportList.java
package org.displaytag.sample;
import java.util.ArrayList;
import java.util.Collections;
// Referenced classes of package org.displaytag.sample:
// ReportableListObject
public class ReportList extends ArrayList
{
public ReportList()
{
for(int j = 0; j < 20; j++)
add(new ReportableListObject());
Collections.sort(this);
}
public ReportList(int size)
{
for(int j = 0; j < size; j++)
add(new ReportableListObject());
Collections.sort(this);
}
private static final long serialVersionUID = 0xd1597a17a6L;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -