如何在不使用JDialog的情况下使用JDialog

时间:2011-08-26 23:26:36

标签: java swing jdialog

抱歉这个奇怪的标题,但这是解释。 所以我有一个带有学生列表的StudentRepository类,它们是在GUI上选择的(通过TableModel)。 学生对象的属性是:

int studentid

string name,surname

List<Absent> absents

List<ClassRoom> classes (as in classroom)

所以我想调用一个在StudentRepository中运行的方法,该方法检查学生是否已经缺席然后应该有一个提示是否可以删除,并且在提示时应该显示缺席。就像一个jDialog。

希望我让自己理解, Haroun Minhas

1 个答案:

答案 0 :(得分:5)

我无法理解为什么你不想使用JDialog来做这件事。这是一个tutorial。 您可以在JDialog中放置任何您想要的内容,甚至是您缺席的列表。