Drive API v2 (revision 1)



Uses of Class
com.google.api.services.drive.model.ParentReference

Packages that use ParentReference
com.google.api.services.drive   
com.google.api.services.drive.model   
 

Uses of ParentReference in com.google.api.services.drive
 

Methods in com.google.api.services.drive that return ParentReference
 ParentReference Drive.Parents.Insert.execute()
          Sends the "insert" request to the Drive server.
 ParentReference Drive.Parents.Get.execute()
          Sends the "get" request to the Drive server.
 

Methods in com.google.api.services.drive with parameters of type ParentReference
 Drive.Parents.Insert Drive.Parents.insert(String fileId, ParentReference content)
          Adds a parent folder for a file.
 

Method parameters in com.google.api.services.drive with type arguments of type ParentReference
 void Drive.Parents.Insert.queue(BatchRequest batch, JsonBatchCallback<ParentReference> callback)
          Queues the "insert" request to the Drive server into the given batch request.
 void Drive.Parents.Get.queue(BatchRequest batch, JsonBatchCallback<ParentReference> callback)
          Queues the "get" request to the Drive server into the given batch request.
 

Uses of ParentReference in com.google.api.services.drive.model
 

Methods in com.google.api.services.drive.model that return ParentReference
 ParentReference ParentReference.setId(String id)
          The ID of the parent.
 ParentReference ParentReference.setIsRoot(Boolean isRoot)
          Whether or not the parent is the root folder.
 ParentReference ParentReference.setKind(String kind)
          This is always drive#parentReference.
 ParentReference ParentReference.setParentLink(String parentLink)
          A link to the parent.
 ParentReference ParentReference.setSelfLink(String selfLink)
          A link back to this reference.
 

Methods in com.google.api.services.drive.model that return types with arguments of type ParentReference
 List<ParentReference> ParentList.getItems()
          The actual list of parents.
 List<ParentReference> File.getParents()
          Collection of parent folders which contain this file.
 

Method parameters in com.google.api.services.drive.model with type arguments of type ParentReference
 ParentList ParentList.setItems(List<ParentReference> items)
          The actual list of parents.
 File File.setParents(List<ParentReference> parents)
          Collection of parent folders which contain this file.