Drive API v2 (revision 1)



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

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

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

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

Methods in com.google.api.services.drive with parameters of type ChildReference
 Drive.Children.Insert Drive.Children.insert(String folderId, ChildReference content)
          Inserts a file into a folder.
 

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

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

Methods in com.google.api.services.drive.model that return ChildReference
 ChildReference ChildReference.setChildLink(String childLink)
          A link to the child.
 ChildReference ChildReference.setId(String id)
          The ID of the child.
 ChildReference ChildReference.setKind(String kind)
          This is always drive#childReference.
 ChildReference ChildReference.setSelfLink(String selfLink)
          A link back to this reference.
 

Methods in com.google.api.services.drive.model that return types with arguments of type ChildReference
 List<ChildReference> ChildList.getItems()
          The actual list of children.
 

Method parameters in com.google.api.services.drive.model with type arguments of type ChildReference
 ChildList ChildList.setItems(List<ChildReference> items)
          The actual list of children.