xref: /aosp_15_r20/external/guice/examples/src/example/xml/Phone.java (revision dc5640d1ceac12a29404866b9a53df952a7a6c47)
1*dc5640d1SHerbert Xue package example.xml;
2*dc5640d1SHerbert Xue 
3*dc5640d1SHerbert Xue public class Phone {
4*dc5640d1SHerbert Xue 
5*dc5640d1SHerbert Xue   Contacts contacts;
6*dc5640d1SHerbert Xue 
setContacts(Contacts contacts)7*dc5640d1SHerbert Xue   public void setContacts(Contacts contacts) {
8*dc5640d1SHerbert Xue     this.contacts = contacts;
9*dc5640d1SHerbert Xue   }
10*dc5640d1SHerbert Xue 
getContacts()11*dc5640d1SHerbert Xue   public Contacts getContacts() {
12*dc5640d1SHerbert Xue     return contacts;
13*dc5640d1SHerbert Xue   }
14*dc5640d1SHerbert Xue }
15