📄 aboutdialog$section.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3)
// Source File Name: AboutDialog.java
package com.sap.mw.jco.util;
import java.util.Vector;
// Referenced classes of package com.sap.mw.jco.util:
// AboutDialog
public static class AboutDialog$Section
{
public void addEntry(String name, String value)
{
m_entries.addElement(new uePair(name, value));
}
public String getTitle()
{
return m_title == null ? "" : m_title;
}
public int getNumEntries()
{
return m_entries.size();
}
public String getEntryName(int index)
{
return ((uePair)m_entries.elementAt(index)).getName();
}
public String getEntryValue(int index)
{
return ((uePair)m_entries.elementAt(index)).getValue();
}
String m_title;
Vector m_entries;
public AboutDialog$Section(String title)
{
m_entries = new Vector();
m_title = title;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -