Change log:95336cb92b..191d55580eFull diff:95336cb92b..191d55580eRoll chromium third_party 4e16929f46..3a8f2a9e1e Change log:4e16929f46..3a8f2a9e1eChanged dependencies: * src/tools:c44a3f5eca..f524a53b81DEPS diff:95336cb92b..191d55580e/DEPS No update to Clang. TBR=titovartem@google.com, BUG=None CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Change-Id: Ic9c4a62b050383646e9fcf5cc07a5653c14ac06e Reviewed-on: https://webrtc-review.googlesource.com/76120 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Artem Titov <titovartem@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#23205}
51 lines
1.6 KiB
Java
51 lines
1.6 KiB
Java
// See README.txt for information and build instructions.
|
|
|
|
import com.example.tutorial.AddressBookProtos.AddressBook;
|
|
import com.example.tutorial.AddressBookProtos.Person;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import java.io.PrintStream;
|
|
|
|
class ListPeople {
|
|
// Iterates though all people in the AddressBook and prints info about them.
|
|
static void Print(AddressBook addressBook) {
|
|
for (Person person: addressBook.getPeopleList()) {
|
|
System.out.println("Person ID: " + person.getId());
|
|
System.out.println(" Name: " + person.getName());
|
|
if (!person.getEmail().isEmpty()) {
|
|
System.out.println(" E-mail address: " + person.getEmail());
|
|
}
|
|
|
|
for (Person.PhoneNumber phoneNumber : person.getPhonesList()) {
|
|
switch (phoneNumber.getType()) {
|
|
case MOBILE:
|
|
System.out.print(" Mobile phone #: ");
|
|
break;
|
|
case HOME:
|
|
System.out.print(" Home phone #: ");
|
|
break;
|
|
case WORK:
|
|
System.out.print(" Work phone #: ");
|
|
break;
|
|
}
|
|
System.out.println(phoneNumber.getNumber());
|
|
}
|
|
}
|
|
}
|
|
|
|
// Main function: Reads the entire address book from a file and prints all
|
|
// the information inside.
|
|
public static void main(String[] args) throws Exception {
|
|
if (args.length != 1) {
|
|
System.err.println("Usage: ListPeople ADDRESS_BOOK_FILE");
|
|
System.exit(-1);
|
|
}
|
|
|
|
// Read the existing address book.
|
|
AddressBook addressBook =
|
|
AddressBook.parseFrom(new FileInputStream(args[0]));
|
|
|
|
Print(addressBook);
|
|
}
|
|
}
|