Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Car
  2.  
  3. - plate: String
  4. - paths: Path[]
  5.  
  6. Path
  7.  
  8. - startDate: DateTime
  9. - positions: Position[]
  10.  
  11. Position
  12.  
  13. - coordinate: LatLng
  14. - photos: Photo[]
  15.  
  16. Photo
  17.  
  18. - data: Blob
  19. - cameraId: Int
  20.  
  21. Camera
  22.  
  23. - serialNumber: String
  24.  
  25. Path activePath = car.getOrCreateActivePath();
  26.  
  27. car.getOrCreateActivePath();
  28. car.addPositionToActivePath(LatLng coordinate);
  29. car.addPhotoToLastPositionOfActivePath(Blob data);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement