Java IRC bot
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

TokenTypeArity.java 243B

12345678910111213141516171819
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.dmdirc.addons.calc;
  6. /**
  7. *
  8. * @author chris
  9. */
  10. public enum TokenTypeArity {
  11. HIDDEN,
  12. NULLARY,
  13. UNARY,
  14. BINARY;
  15. }