aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJan Tattermusch <jtattermusch@google.com>2015-07-20 15:24:08 -0700
committerJan Tattermusch <jtattermusch@google.com>2015-07-20 15:24:08 -0700
commitb0e5ba697eb281b4ea9e53e1dc9f5ebeccf28f9a (patch)
tree264a596dcc4d8fe77613720934f111257a349981 /examples
parent359d32d4f711b7f8f774a1ceaa3ad55aa13167cf (diff)
downloadprotobuf-b0e5ba697eb281b4ea9e53e1dc9f5ebeccf28f9a.tar.gz
protobuf-b0e5ba697eb281b4ea9e53e1dc9f5ebeccf28f9a.tar.bz2
protobuf-b0e5ba697eb281b4ea9e53e1dc9f5ebeccf28f9a.zip
rename persons to people
Diffstat (limited to 'examples')
-rw-r--r--examples/AddPerson.java2
-rw-r--r--examples/ListPeople.java2
-rw-r--r--examples/add_person.cc2
-rwxr-xr-xexamples/add_person.py2
-rw-r--r--examples/addressbook.proto2
-rw-r--r--examples/list_people.cc4
-rwxr-xr-xexamples/list_people.py2
7 files changed, 8 insertions, 8 deletions
diff --git a/examples/AddPerson.java b/examples/AddPerson.java
index 259cfb7b..c262ab7e 100644
--- a/examples/AddPerson.java
+++ b/examples/AddPerson.java
@@ -80,7 +80,7 @@ class AddPerson {
}
// Add an address.
- addressBook.addPersons(
+ addressBook.addPeople(
PromptForAddress(new BufferedReader(new InputStreamReader(System.in)),
System.out));
diff --git a/examples/ListPeople.java b/examples/ListPeople.java
index 0294fb7a..78924305 100644
--- a/examples/ListPeople.java
+++ b/examples/ListPeople.java
@@ -9,7 +9,7 @@ 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.getPersonsList()) {
+ for (Person person: addressBook.getPeopleList()) {
System.out.println("Person ID: " + person.getId());
System.out.println(" Name: " + person.getName());
if (!person.getEmail().isEmpty()) {
diff --git a/examples/add_person.cc b/examples/add_person.cc
index e71d3844..9bec4b37 100644
--- a/examples/add_person.cc
+++ b/examples/add_person.cc
@@ -77,7 +77,7 @@ int main(int argc, char* argv[]) {
}
// Add an address.
- PromptForAddress(address_book.add_persons());
+ PromptForAddress(address_book.add_people());
{
// Write the new address book back to disk.
diff --git a/examples/add_person.py b/examples/add_person.py
index 919a1a17..fd81c982 100755
--- a/examples/add_person.py
+++ b/examples/add_person.py
@@ -50,7 +50,7 @@ except IOError:
print sys.argv[1] + ": File not found. Creating a new file."
# Add an address.
-PromptForAddress(address_book.persons.add())
+PromptForAddress(address_book.people.add())
# Write the new address book back to disk.
f = open(sys.argv[1], "wb")
diff --git a/examples/addressbook.proto b/examples/addressbook.proto
index 64cb7acf..bfdceeaf 100644
--- a/examples/addressbook.proto
+++ b/examples/addressbook.proto
@@ -29,5 +29,5 @@ message Person {
// Our address book file is just one of these.
message AddressBook {
- repeated Person persons = 1;
+ repeated Person people = 1;
}
diff --git a/examples/list_people.cc b/examples/list_people.cc
index 3daa3159..68e5666d 100644
--- a/examples/list_people.cc
+++ b/examples/list_people.cc
@@ -8,8 +8,8 @@ using namespace std;
// Iterates though all people in the AddressBook and prints info about them.
void ListPeople(const tutorial::AddressBook& address_book) {
- for (int i = 0; i < address_book.persons_size(); i++) {
- const tutorial::Person& person = address_book.persons(i);
+ for (int i = 0; i < address_book.people_size(); i++) {
+ const tutorial::Person& person = address_book.people(i);
cout << "Person ID: " << person.id() << endl;
cout << " Name: " << person.name() << endl;
diff --git a/examples/list_people.py b/examples/list_people.py
index e0658493..755de901 100755
--- a/examples/list_people.py
+++ b/examples/list_people.py
@@ -7,7 +7,7 @@ import sys
# Iterates though all people in the AddressBook and prints info about them.
def ListPeople(address_book):
- for person in address_book.persons:
+ for person in address_book.people:
print "Person ID:", person.id
print " Name:", person.name
if person.email != "":