Skip to content

Commit 530ae62

Browse files
committed
added documentation
1 parent 499d63d commit 530ae62

6 files changed

Lines changed: 20 additions & 55 deletions

File tree

src/org/teachingextensions/logo/shapes/Oval.java

Lines changed: 0 additions & 46 deletions
This file was deleted.

src/org/teachingextensions/logo/shapes/Text.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
/**
1313
* <img src="http://www.iconeasy.com/icon/thumbnails/System/BlankOn/Text%20Icon.jpg" align="left" >
14-
* The Text allows you to write text on the canvas
14+
* Text allows you to write text on the window
1515
*/
1616
public class Text implements Paintable
1717
{

src/org/teachingextensions/logo/utils/Sounds.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
import java.awt.Toolkit;
44

5+
/**
6+
* <img src="http://www.spellzone.com/images/sound-icon.gif" align="left" >
7+
* Sounds allows you to play sounds, like a 'beep'
8+
*/
59
public class Sounds
610
{
711
/**

src/org/teachingextensions/utils/VirtualProctor.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
import com.spun.util.StringUtils;
66
import com.spun.util.io.FileUtils;
77

8+
/**
9+
* <img src="http://indiajkd.com/wp-content/uploads/2013/08/JKD-India-6.gif" align="left" height="50" width="50">
10+
* Virtual Proctor allows you to see what all the TKPJava coders are making
11+
*/
812
public class VirtualProctor
913
{
1014
public static class internals

src/org/teachingextensions/windows/MessageBox.java

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@
55
import com.spun.util.NumberUtils;
66

77
/**
8-
* <img src="http://www.mhhe.com/engcs/compsci/wu2/graphics/wu2java/common/javabook2Doc/mbox3.gif" align="left" >
9-
* MessageBox is a window that can collect numerical input from the user
10-
* or print a message for the user to read. <br/>
11-
*
12-
*
13-
*
8+
* <img src="http://www.mhhe.com/engcs/compsci/wu2/graphics/wu2java/common/javabook2Doc/mbox3.gif" align="left" height="60" width="145">
9+
* <br/>
10+
* <br/>
11+
* <br/>
12+
* <br/>
13+
* <br/>
14+
* MessageBox is a pop up window <br/>
15+
* Use it to collect numerical input from the user <br/>
16+
* Or to display a message for the user to read. <br/>
1417
*/
1518
public class MessageBox
1619
{

src/org/teachingextensions/windows/ProgramWindow.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
import com.spun.util.WindowUtils;
1919

2020
/**
21-
* <img src="http://ftpmirror.your.org/pub/wikimedia/images/wikibooks/de/2/2c/JPanel_Add_JButton_PAGE_END.JPG" align="left" >
21+
* <img src="http://ftpmirror.your.org/pub/wikimedia/images/wikibooks/de/2/2c/JPanel_Add_JButton_PAGE_END.JPG" align="left" height="50" width="75" >
2222
* Program Window allows you to change the color of the background and more...
2323
*/
24-
@SuppressWarnings({"serial", "deprecation"})
24+
@SuppressWarnings({"serial"})
2525
public class ProgramWindow extends JPanel
2626
{
2727
public ArrayList<Paintable> additional = new ArrayList<Paintable>();

0 commit comments

Comments
 (0)