?? fastvector$fastvectorenumeration.java
字號:
// Decompiled by DJ v3.9.9.91 Copyright 2005 Atanas Neshkov Date: 2007-5-16 21:11:32
// Home Page : http://members.fortunecity.com/neshkov/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: FastVector.java
package apriori;
import java.util.Enumeration;
// Referenced classes of package apriori:
// FastVector
public class FastVector$FastVectorEnumeration
implements Enumeration
{
public final boolean hasMoreElements()
{
return m_Counter < m_Vector.size();
}
public final Object nextElement()
{
Object obj = m_Vector.elementAt(m_Counter);
m_Counter++;
if(m_Counter == m_SpecialElement)
m_Counter++;
return obj;
}
private int m_Counter;
private FastVector m_Vector;
private int m_SpecialElement;
public FastVector$FastVectorEnumeration(FastVector fastvector1)
{
m_Counter = 0;
m_Vector = fastvector1;
m_SpecialElement = -1;
}
public FastVector$FastVectorEnumeration(FastVector fastvector1, int i)
{
m_Vector = fastvector1;
m_SpecialElement = i;
if(i == 0)
m_Counter = 1;
else
m_Counter = 0;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -