-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClassSummaryReport.java
438 lines (386 loc) · 12.9 KB
/
ClassSummaryReport.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package ws.thurn.dossier;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.DecimalFormat;
import java.text.NumberFormat;
import javax.swing.BoxLayout;
import javax.swing.ComboBoxModel;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
/*
* .
*/
/**
* The ClassSummaryReport class generates the GUI for user interactions to
* produce a Class Summary Report, and also contains code to generate that
* report.
*
* @author Derek Thurn
*/
public class ClassSummaryReport implements ActionListener
{
JFrame frm = new JFrame();
private JPanel jPanel1;
private JButton cancel;
private JButton create;
private JButton print;
private JButton view;
private JPanel jPanel3;
private JPanel mid;
private JLabel selectLabel;
private JComboBox classCombo;
private boolean printIt = false;
// If true, the report is sent to the printer.
private boolean viewIt = false;
// If true, the report is displayed in a view window.
private Klass theClass;
// The class which the report is being created for.
/**
* Creates a new Class Summary Report window
*/
public ClassSummaryReport()
{
displayScreen();
}
/**
* Displays the GUI
*
* @pre the required GUI objects have been declared
* @post the GUI has been displayed.
*/
public void displayScreen()
{
frm.setSize( 500, 500 );
frm.setTitle( "Class Summary Report" );
frm.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
BoxLayout frmLayout = new BoxLayout( frm.getContentPane(),
javax.swing.BoxLayout.Y_AXIS );
frm.getContentPane().setLayout( frmLayout );
GradeBook.center( frm );
frm.setVisible( true );
{
jPanel1 = new JPanel();
frm.getContentPane().add( jPanel1 );
{
selectLabel = new JLabel();
jPanel1.add( selectLabel );
selectLabel
.setText( "Select the class which you would like to generate a Class Summary for." );
}
}
{
mid = new JPanel();
frm.getContentPane().add( mid );
String temp[] = GradeBook.getClassesStringArray();
String classes[] = new String[ temp.length + 1 ];
classes[ 0 ] = "All Classes";
for( int i = 1; i <= temp.length; i++ )
{
classes[ i ] = temp[ i - 1 ];
}
ComboBoxModel classComboModel = new DefaultComboBoxModel( classes );
classCombo = new JComboBox();
mid.add( classCombo );
classCombo.setModel( classComboModel );
classCombo.addActionListener( this );
classCombo.setSelectedIndex( -1 );
}
{
jPanel3 = new JPanel();
frm.getContentPane().add( jPanel3 );
{
create = new JButton();
jPanel3.add( create );
create.setText( "Export Report(s)" );
create.addActionListener( this );
}
{
view = new JButton();
jPanel3.add( view );
view.setText( "View Report" );
view.addActionListener( this );
}
{
print = new JButton();
jPanel3.add( print );
print.setText( "Print Report" );
print.addActionListener( this );
}
{
cancel = new JButton();
jPanel3.add( cancel );
cancel.setText( "Cancel" );
cancel.addActionListener( this );
}
}
}
/**
* Prints the Class Summary Report
*
* @param reportName
* @pre the report exists
* @post the report has been sent to the printer.
*/
public void printReport( String reportName )
{
try
{
JEditorPane panel = new JEditorPane();
File location = new File( "Reports/" + reportName );
panel.setPage( location.toURL() );
JDialog temp = new JDialog();
temp.add( new JScrollPane( panel ) );
temp.setBounds( -800, -600, 800, 600 );
temp.setVisible( true );
Printer.printComponent( panel );
}
catch( java.io.IOException a )
{
a.printStackTrace();
}
}
/**
* Views the Class Summary Report
*
* @param reportName
* @pre the report exists
* @post a report viewbox has been displayed.
*/
public void viewReport( String reportName )
{
try
{
JEditorPane panel = new JEditorPane();
File location = new File( "Reports/" + reportName );
panel.setPage( location.toURL() );
panel.setEditable( false );
JDialog temp = new JDialog();
temp.add( new JScrollPane( panel ) );
temp.setBounds( 0, 0, 800, 600 );
temp.setVisible( true );
}
catch( java.io.IOException a )
{
}
}
/**
* Creates a Class Summary Report for a specific class.
*
* @param theClass
* @throws IOException
* @pre the required class, student, assignment, and grand data has been
* entered
* @post the specified report has been generated.
*/
public void createReport( Klass theClass ) throws IOException
{
String className = theClass.toString();
String studentName;
PrintWriter out = new PrintWriter( new BufferedWriter( new FileWriter(
"Reports/" + className + " Summary.html" ) ) );
String reportN = className + " Summary.html";
NumberFormat percentage = new DecimalFormat( "00.00" );
out.println( "<html>" );
out.println( "<head>" );
out
.println( "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">" );
out.println( "<title>" );
out.println( "Class Summary Report for " + className );
out.println( "</title>" );
out.println( "</head>" );
out.println( "<body>" );
out
.println( "<table><tr><th colspan=2><strong>Class Summary Report</strong></th></tr><tr><td>Class Name:</td><td>"
+ className
+ "</td></tr><tr><td>Teacher Name:</td><td>"
+ theClass.getTeacherName()
+ "</td></tr><tr><td>School Name:</td><td>"
+ theClass.getSchoolName() + "</td></tr></table><br>" );
out.println( "<table border=1>" );
out.println( "<tr>" );
out.println( "<th><strong>Student Name</strong></th>" );
out.println( "<th><strong>Average</strong></th>" );
out.println( "</tr>" );
LinkedList students = theClass.getStudents();
ListIterator ite = students.listIterator();
while( ite.hasNext() )
{
studentName = ite.next().toString();
out.println( "<tr><td>" + studentName + "</td><td>"
+ percentage.format( theClass.getAverage( studentName ) )
+ "%</td>" );
}
out.println( "<tr>" );
out.println( "<td><strong>Class Average:</strong></td>" );
out.println( "<td><strong>"
+ percentage.format( theClass.getClassAverage() )
+ "%</strong></td>" );
out.println( "</tr>" );
out.println( "</table>" );
out.println( "</body>" );
out.println( "</html>" );
out.close();
if( printIt )
printReport( reportN );
if( viewIt )
viewReport( reportN );
}
/**
* Listens for button clicks.
*
* @pre The listeners have been added.
* @post none
*/
public void actionPerformed( ActionEvent evt )
{
if( evt.getSource().equals( classCombo ) )
{
if( classCombo.getSelectedItem() == null )
return;
String cl = classCombo.getSelectedItem().toString();
if( cl.equals( "All Classes" ) )
{
theClass = new Klass( "All Classes Are Selected" );
}
else
{
theClass = GradeBook.getClassFromString( cl );
}
}
if( evt.getSource().equals( cancel ) )
{
frm.dispose();
new ReportsScreen();
}
if( evt.getSource().equals( view ) )
{
viewIt = true;
printIt = false;
if( theClass == null )
{
GradeBook.error( "You must select a class!" );
return;
}
if( theClass.toString().equals( "All Classes Are Selected" ) )
{
LinkedList classes;
classes = GradeBook.getClasses();
ListIterator li = classes.listIterator();
while( li.hasNext() )
{
try
{
createReport( (Klass) li.next() );
}
catch( IOException e )
{
GradeBook.error( "IO Exception Caused" );
}
}
}
else
{
try
{
createReport( theClass );
}
catch( IOException e )
{
GradeBook.error( "IO Exception Caused" );
}
}
}
if( evt.getSource().equals( print ) )
{
printIt = true;
viewIt = false;
if( theClass == null )
{
GradeBook.error( "You must select a class!" );
return;
}
if( theClass.toString().equals( "All Classes Are Selected" ) )
{
LinkedList classes;
classes = GradeBook.getClasses();
ListIterator li = classes.listIterator();
while( li.hasNext() )
{
try
{
createReport( (Klass) li.next() );
}
catch( IOException e )
{
GradeBook.error( "IO Exception Caused" );
}
}
}
else
{
try
{
createReport( theClass );
}
catch( IOException e )
{
GradeBook.error( "IO Exception Caused" );
}
}
}
if( evt.getSource().equals( create ) )
{
printIt = false;
viewIt = false;
if( theClass == null )
{
GradeBook.error( "You must select a class!" );
return;
}
if( theClass.toString().equals( "All Classes Are Selected" ) )
{
LinkedList classes;
classes = GradeBook.getClasses();
ListIterator li = classes.listIterator();
while( li.hasNext() )
{
try
{
createReport( (Klass) li.next() );
}
catch( IOException e )
{
GradeBook.error( "IO Exception Caused" );
}
}
}
else
{
try
{
createReport( theClass );
}
catch( IOException e )
{
GradeBook.error( "IO Exception Caused" );
}
}
JOptionPane.showMessageDialog( null,
"The report(s) have been saved in the Reports directory.",
"Done", JOptionPane.INFORMATION_MESSAGE );
}
}
}