본문 바로가기

카테고리 없음

[수정중]DocumentListDemo.java 분석하면서 메모

728x90
⦁ 영어 실력이 부족하여 해석을 잘못 했을 수도 있고, 순전히 주관적인 입장에서 쓰는 메모글이니 틀릴 수 있는 여지가 다분합니다. 따라서 틀린 부분이 있으면 지적 바랍니다.


DocumentListDemo.java



DocsService.class
GoogleService를 상속받으며 Docs를 컨트롤하기 위해 필요한 각종 컨트롤을 제공한다.


DocumentListFeed.class
Google에서 리턴한 XML 파일들을 파싱하고 담는 Value Object인 듯?


DocumentListEntry.class
Google에서 리턴한 XML 파일들을 파싱하고 담는 Value Object인 듯?

DocumentListEntry.getTitle().getPlainText() : File Name

doc.getParentLinks() : 연결되어 있는 Collection의 목록



com.google.gdata.data.Person

DocumentListEntry에서 getAuthor()를 할 때 나오는 메소드.
아마도 유저의 정의 인 듯?

com.google.gdata.data.TextConstruct
Entry나 Feed에서 getTitle을 할 때 나오는 클래스
String으로 변환하려면 getPlainText() 메소드를 사용하면 된다.


반응형