1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Libraries Installer UI refactor

This commit is contained in:
Cristian Maglie
2015-02-27 12:29:36 +01:00
committed by Federico Fissore
parent f833ff84a7
commit 2c234a09f1
5 changed files with 173 additions and 56 deletions

View File

@ -109,6 +109,10 @@ public abstract class ContributedLibrary extends DownloadableContribution {
@Override
public String toString() {
return getVersion();
}
public String info() {
String res = "";
res += " ContributedLibrary : " + getName() + "\n";
res += " author : " + getAuthor() + "\n";