[scrobblerj commit] r4 - in trunk/src/scrobblerj: . album user

0 views
Skip to first unread message

codesite...@google.com

unread,
May 27, 2007, 9:36:35 AM5/27/07
to scrobble...@googlegroups.com
Author: serkankaba
Date: Sun May 27 06:36:25 2007
New Revision: 4

Modified:
trunk/src/scrobblerj/XMLParserProxy.java
trunk/src/scrobblerj/album/AlbumProxy.java
trunk/src/scrobblerj/user/TasteOMeterProxy.java
trunk/src/scrobblerj/user/User.java
trunk/src/scrobblerj/user/UserProxy.java

Log:
changed visibility of proxies
organized imports

Modified: trunk/src/scrobblerj/XMLParserProxy.java
==============================================================================
--- trunk/src/scrobblerj/XMLParserProxy.java (original)
+++ trunk/src/scrobblerj/XMLParserProxy.java Sun May 27 06:36:25 2007
@@ -1,6 +1,5 @@
package scrobblerj;

-
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Node;

Modified: trunk/src/scrobblerj/album/AlbumProxy.java
==============================================================================
--- trunk/src/scrobblerj/album/AlbumProxy.java (original)
+++ trunk/src/scrobblerj/album/AlbumProxy.java Sun May 27 06:36:25 2007
@@ -4,17 +4,15 @@
import java.net.URL;
import java.util.Date;

-
-
import org.w3c.dom.Node;

import scrobblerj.XMLParserProxy;

-public class AlbumProxy extends XMLParserProxy implements IAlbum {
+class AlbumProxy extends XMLParserProxy implements IAlbum {

private String artist,title;

- public AlbumProxy(String artist, String title) {
+ AlbumProxy(String artist, String title) {
this.artist = artist;
this.title = title;
}

Modified: trunk/src/scrobblerj/user/TasteOMeterProxy.java
==============================================================================
--- trunk/src/scrobblerj/user/TasteOMeterProxy.java (original)
+++ trunk/src/scrobblerj/user/TasteOMeterProxy.java Sun May 27 06:36:25 2007
@@ -8,8 +8,7 @@
import scrobblerj.XMLParserProxy;
import scrobblerj.artist.Artist;

-
-public class TasteOMeterProxy extends XMLParserProxy implements ITasteOMeter {
+class TasteOMeterProxy extends XMLParserProxy implements ITasteOMeter {

private IUser userA,userB;

Modified: trunk/src/scrobblerj/user/User.java
==============================================================================
--- trunk/src/scrobblerj/user/User.java (original)
+++ trunk/src/scrobblerj/user/User.java Sun May 27 06:36:25 2007
@@ -4,7 +4,6 @@
import java.net.URL;
import java.util.Date;

-
public class User implements IUser {
private UserProxy proxy;
public int getAge() {

Modified: trunk/src/scrobblerj/user/UserProxy.java
==============================================================================
--- trunk/src/scrobblerj/user/UserProxy.java (original)
+++ trunk/src/scrobblerj/user/UserProxy.java Sun May 27 06:36:25 2007
@@ -1,16 +1,14 @@
package scrobblerj.user;
+
import java.awt.image.RenderedImage;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Date;
import java.util.Vector;
-
-
import javax.imageio.ImageIO;
import javax.xml.parsers.DocumentBuilderFactory;

-
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
@@ -18,12 +16,12 @@
import scrobblerj.XMLParserProxy;


-public class UserProxy extends XMLParserProxy implements IUser {
+class UserProxy extends XMLParserProxy implements IUser {

private String username;
private boolean imageFetched;
private RenderedImage image;
- public UserProxy(String userName) {
+ UserProxy(String userName) {
this.username = userName;
}

codesite...@google.com

unread,
May 27, 2007, 9:37:44 AM5/27/07
to scrobble...@googlegroups.com
Reply all
Reply to author
Forward
0 new messages