Package com.google.gdata.data

Examples of com.google.gdata.data.Person


        return insert(getIssuesUrl(), entry);
    }

    public Person getCurrentUser() {
        Person person = new Person();
        person.setName(this.userName);
        return person;
    }
View Full Code Here


      }
     
      if (entry.getAuthors() != null) {
        List authorList = new LinkedList();
        for (Iterator ai = entry.getAuthors().iterator(); ai.hasNext(); ) {
          Person person = (Person) ai.next();
          authorList.add(Value.getStringValue(person.getName()) );
          if (person.getEmail() != null) {
            authorList.add(Value.getStringValue( person.getEmail()) );
          }
        }
        map.put(PROPNAME_AUTHOR, new SimpleProperty(authorList));
      }
View Full Code Here

TOP

Related Classes of com.google.gdata.data.Person

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.