[Japi-cvs] SF.net SVN: japi: [333] progs/jeduca/trunk/src/net/sf/japi/progs/jeduca
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2007-05-12 14:56:53
|
Revision: 333 http://svn.sourceforge.net/japi/?rev=333&view=rev Author: christianhujer Date: 2007-05-12 07:56:50 -0700 (Sat, 12 May 2007) Log Message: ----------- Modified JEduca to incorporate recent JAPI changes. Modified Paths: -------------- progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/Main.java progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/gui/ReviewGUI.java progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/swing/recent/RecentURLsMenu.java Modified: progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/Main.java =================================================================== --- progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/Main.java 2007-05-12 14:56:27 UTC (rev 332) +++ progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/Main.java 2007-05-12 14:56:50 UTC (rev 333) @@ -29,6 +29,7 @@ /** Main program. * @param args command line arguments + * @throws Throwable in case of problems starting the program. */ public static void main(final String... args) throws Throwable { new ProgramFrame(new Program()); Modified: progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/gui/ReviewGUI.java =================================================================== --- progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/gui/ReviewGUI.java 2007-05-12 14:56:27 UTC (rev 332) +++ progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/jtest/gui/ReviewGUI.java 2007-05-12 14:56:50 UTC (rev 333) @@ -33,7 +33,7 @@ import javax.swing.event.ChangeListener; import net.sf.japi.progs.jeduca.jtest.QuestionCollection; import net.sf.japi.progs.jeduca.jtest.QuestionText; -import net.sf.japi.swing.ColumnLayout; +import net.sf.japi.swing.VerticalFlowLayout; /** Graphical user interface for displaying a review page for all questions. * @author $Author: chris $ @@ -68,7 +68,7 @@ public ReviewGUI(final QuestionCollectionGUI questionCollectionGUI) { this.questionCollectionGUI = questionCollectionGUI; setLayout(new BorderLayout()); - reviews = new JPanel(new ColumnLayout()); + reviews = new JPanel(new VerticalFlowLayout()); add(reviews); } Modified: progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/swing/recent/RecentURLsMenu.java =================================================================== --- progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/swing/recent/RecentURLsMenu.java 2007-05-12 14:56:27 UTC (rev 332) +++ progs/jeduca/trunk/src/net/sf/japi/progs/jeduca/swing/recent/RecentURLsMenu.java 2007-05-12 14:56:50 UTC (rev 333) @@ -25,7 +25,7 @@ import javax.swing.JMenu; import javax.swing.JMenuItem; import net.sf.japi.swing.ActionFactory; -import net.sf.japi.swing.io.CanLoad; +import net.sf.japi.swing.app.CanLoad; /** Class for a menu showing the recently used URLs. * @todo think about serialization of recent and program This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |