Skip to content

Commit

Permalink
comment code for MainFrame class
Browse files Browse the repository at this point in the history
  • Loading branch information
chern committed May 27, 2016
1 parent 146ecff commit 50886d7
Show file tree
Hide file tree
Showing 12 changed files with 96 additions and 75 deletions.
4 changes: 2 additions & 2 deletions AuthTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
/**
* Write a description of class AuthTest here.
*
* @author (your name)
* @version (a version number or a date)
* @author Nishan D'Souza
* @version N/A
*/
public class AuthTest
{
Expand Down
Binary file modified MainFrame$1FavoriteListener.class
Binary file not shown.
Binary file modified MainFrame$1RetweetListener.class
Binary file not shown.
Binary file modified MainFrame$1TweetButtonListener.class
Binary file not shown.
Binary file modified MainFrame$1UserLabelListener.class
Binary file not shown.
Binary file modified MainFrame.class
Binary file not shown.
12 changes: 6 additions & 6 deletions MainFrame.ctxt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ comment0.params=
comment0.target=MainFrame()
comment1.params=
comment1.target=void\ displayInterface()
comment2.params=overallP
comment2.target=void\ addLeftPanel(javax.swing.JPanel)
comment3.params=overallP
comment3.target=void\ addCenterPanel(javax.swing.JPanel)
comment4.params=overallP
comment4.target=void\ addRightPanel(javax.swing.JPanel)
comment2.params=
comment2.target=void\ addLeftPanel()
comment3.params=
comment3.target=void\ addCenterPanel()
comment4.params=
comment4.target=void\ addRightPanel()
comment5.params=t\ p
comment5.target=void\ displayTweet(TweetData,\ javax.swing.JPanel)
comment6.params=path
Expand Down
142 changes: 83 additions & 59 deletions MainFrame.java

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions TweetData.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/**
* TweetData
*
* @author William Chern
* @author William Chern & Nishan D'Souza
* @version 5/11/2016
*/
public class TweetData
Expand All @@ -20,7 +20,7 @@ public class TweetData
private int followersCount;
private int followingCount;
private long tweetID;
//various private instance fields to hold the values of the twitter object
// various private instance fields to hold the values of the twitter object
public TweetData(String u, String t, ImageIcon i, int r, int f, int numTweets, int followers, int following, long id) {
userHandle = u;
tweetText = t;
Expand All @@ -32,7 +32,7 @@ public TweetData(String u, String t, ImageIcon i, int r, int f, int numTweets, i
followingCount = following;
tweetID = id;
}
//various accessor methods for the TweetDate class
// various accessor methods for the TweetDate class
public String getUserHandle() {
return userHandle;
}
Expand Down
Binary file modified TwitStarter.class
Binary file not shown.
5 changes: 1 addition & 4 deletions TwitStarter.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
/*
* username - [email protected] or Twit4Java (email preferred)
* password - nishanandchern (yeah i know, very unique)
*/

/**
*
* @author William Chern
Expand Down
2 changes: 1 addition & 1 deletion package.bluej
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ objectbench.width=706
package.editor.height=370
package.editor.width=598
package.editor.x=36
package.editor.y=38
package.editor.y=36
package.numDependencies=2
package.numTargets=4
package.showExtends=true
Expand Down

0 comments on commit 50886d7

Please sign in to comment.