/interpreter/tags/at_build150307/src/edu/vub/at/objects/ATNumber.java

http://ambienttalk.googlecode.com/ · Java · 57 lines · 15 code · 9 blank · 33 comment · 0 complexity · 3d04590ee1dfaa47565b17d2b0a3b7e6 MD5 · raw file

  1. /**
  2. * AmbientTalk/2 Project
  3. * ATNumber.java created on 26-jul-2006 at 15:15:59
  4. * (c) Programming Technology Lab, 2006 - 2007
  5. * Authors: Tom Van Cutsem & Stijn Mostinckx
  6. *
  7. * Permission is hereby granted, free of charge, to any person
  8. * obtaining a copy of this software and associated documentation
  9. * files (the "Software"), to deal in the Software without
  10. * restriction, including without limitation the rights to use,
  11. * copy, modify, merge, publish, distribute, sublicense, and/or
  12. * sell copies of the Software, and to permit persons to whom the
  13. * Software is furnished to do so, subject to the following
  14. * conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be
  17. * included in all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  20. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  21. * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  22. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  23. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  24. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  25. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. package edu.vub.at.objects;
  29. import edu.vub.at.exceptions.InterpreterException;
  30. /**
  31. * The public interface to an AmbientTalk native number (an integer value).
  32. *
  33. * @author tvc
  34. */
  35. public interface ATNumber extends ATNumeric {
  36. // base-level interface
  37. public ATNumeric base_inc() throws InterpreterException;
  38. public ATNumeric base_dec() throws InterpreterException;
  39. public ATNumeric base_abs() throws InterpreterException;
  40. public ATNil base_doTimes_(ATClosure code) throws InterpreterException;
  41. public ATNil base_to_do_(ATNumber end, ATClosure code) throws InterpreterException;
  42. public ATNil base_to_step_do_(ATNumber end, ATNumber inc, ATClosure code) throws InterpreterException;
  43. public ATTable base__optms__optms_(ATNumber end) throws InterpreterException;
  44. public ATTable base__optms__optms__optms_(ATNumber end) throws InterpreterException;
  45. public ATFraction base__opque__opque_(ATNumber nbr) throws InterpreterException;
  46. public ATNumber base__oprem_(ATNumber n) throws InterpreterException;
  47. public ATNumber base__opdiv__opmns_(ATNumber n) throws InterpreterException;
  48. }