add toString implementation to repository listing entries

git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/core/trunk@596215 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Xavier Hanin 2007-11-19 07:31:07 +00:00
parent b7478d6d6f
commit 4528a23a10
3 changed files with 9 additions and 0 deletions

View File

@ -45,4 +45,7 @@ public class ModuleEntry {
return organisationEntry;
}
public String toString() {
return organisationEntry + "#" + module;
}
}

View File

@ -37,4 +37,7 @@ public class OrganisationEntry {
return resolver;
}
public String toString() {
return organisation;
}
}

View File

@ -53,4 +53,7 @@ public class RevisionEntry {
return moduleEntry.getResolver();
}
public String toString() {
return moduleEntry + ";" + revision;
}
}