Guest User

Untitled

a guest
Feb 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1. /* Finds the value for the given ID.
  2. * @param id the item to look up
  3. * @return the value
  4. */
  5. public String findValue(int id) {...}
  6.  
  7. /* Fetches the value for the object of the given ID, either from a local
  8. * cache (if previously fetched) or from a remote data store.
  9. *
  10. * @param id the item to look up (a positive integer returned from
  11. * createEntry)
  12. * @return the value of id if set, or null if there is no value, or
  13. * INVALID_ID if id is not recognized
  14. * @throws AccessException if the data could not be accessed; this is an
  15. * internal error that may require administrator attention
  16. */
  17. public String findValue(int id) throws AccessException {...}
  18.  
  19. /* Finds the [message string] for the given [message ID]. If the [message ID] doesn't
  20. * exist, returns an empty String
  21. *
  22. * @param id the [message ID] to find
  23. * @return the [message string], or if the [message ID] doesn't exist, returns an
  24. * empty String
  25. */
  26. public String findValue(int id) {...}
  27.  
  28. Class Electric_hammer_drill. Makes holes.
  29. @methods: drill, hammer.
  30.  
  31. method drill: Makes holes in material that doesn't need hammering
  32. @params: tool, depth, direction
  33. @return: hole
  34.  
  35. method hammer: Makes holes in material that needs hammering
  36. @params: tool, depth, direction
  37. @return: hole
  38.  
  39.  
  40. Class Hammer. Applies kinetic impulse to objects.
  41. @methods: hit.
  42.  
  43. method hit: Applies kinetic impulse to object
  44. @params: object, strength, location
  45.  
  46. Factory Screw_anchor: anchors screw to wall.
  47. @params: inner_diameter, outer_diameter, length
  48.  
  49. Factory Screw: Binds things together
  50. @params: diameter, length.
  51.  
  52. Class Screwdriver: Turns screws.
  53. @methods turn
  54.  
  55. Method turn: Turns screw.
  56. @params: direction, rotations, hole, screw.
  57.  
  58. ...and about 40 other tools and items you don't need.
  59.  
  60. method drill: Makes holes in material that doesn't need hammering, like wood, metal or plastic. Check table@... for right tool for the material.
  61. @params: tool, depth, direction
  62. @return: hole
  63.  
  64. method hammer: Makes holes in material that needs hammering, specifically concrete. Use masonry bit for a tool.
  65. @params: tool, depth, direction
  66. @return: hole
  67.  
  68. Factory Screw: Binds things together. Requires hole of matching diameter in flexible materials like wood, threaded hole in metal, or a screw anchor of matching inner diameter in concrete.
  69. @params: diameter, length.
  70.  
  71. Factory Screw_anchor: anchors screw to wall. Requires a hole of outer_diameter in concrete type material. Provides hole of inner_diameter in flexible type material. Should be installed using a hammer. Typical use is allowing installing screws in walls.
  72. @params: inner_diameter, outer_diameter, length
Add Comment
Please, Sign In to add comment