[Mc4j-cvs] mc4j/src/org/mc4j/console/bean DashboardsAction.java,1.12,1.13
Brought to you by:
ghinkl
From: Greg H. <gh...@us...> - 2004-04-08 20:43:54
|
Update of /cvsroot/mc4j/mc4j/src/org/mc4j/console/bean In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5745/src/org/mc4j/console/bean Modified Files: DashboardsAction.java Log Message: Allow for the name of dashboard to be context looked up base on context attributes. Added the object name properties as content entries. Index: DashboardsAction.java =================================================================== RCS file: /cvsroot/mc4j/mc4j/src/org/mc4j/console/bean/DashboardsAction.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** DashboardsAction.java 7 Apr 2004 03:08:24 -0000 1.12 --- DashboardsAction.java 8 Apr 2004 20:30:43 -0000 1.13 *************** *** 181,185 **** SwingUtilities.invokeLater(new Runnable() { public void run() { ! tc.setDisplayName(dashboard.getName()); tc.open(); tc.requestActive(); --- 181,185 ---- SwingUtilities.invokeLater(new Runnable() { public void run() { ! tc.setDisplayName(dashboard.getDisplayName()); tc.open(); tc.requestActive(); *************** *** 227,231 **** //String name = doc.getDocumentElement().getAttribute("name"); ! this.displayNames.add(dashboard.getName()); this.associatedInfo.add(dashboard); } --- 227,231 ---- //String name = doc.getDocumentElement().getAttribute("name"); ! this.displayNames.add(dashboard.getDisplayName()); this.associatedInfo.add(dashboard); } |