从类中访问jApplet中的HashSet

时间:2014-09-13 15:42:06

标签: java applet hashset

我想在jApplet中消除我的Hashet。

班主:

public class Owner implements Persistence {
private String SVNr = null;
private String Name = null;
public HashSet AllOwners = new HashSet();

创建新的所有者后,它将推入我的HashSet。 在Applet中,我需要访问此HashSet。我尝试了一些东西,但它没有用。

private void fillListOwner() {
    HashSet OwnerList = new HashSet();
    OwnerList = Owner.AllOwner;

应该可以在我的Applet中的方法fillListOwner中访问类所有者(其中保存所有所有者)的HashSet。 怎样才能让我的所有者进入Applet中的HashSet OwnerList? 此外,我需要在我的jList元素中显示带有Owners的HashSet。

我导入了我的班主。

以下是jList中应显示所有者的屏幕截图: How can i fill the jList with my Owner Hashset from the class Owner

感谢您的帮助。

0 个答案:

没有答案