/src/main/java/org/animotron/statement/instruction/compare/LT.java

https://github.com/animotron/core · Java · 37 lines · 6 code · 5 blank · 26 comment · 0 complexity · 83c02f5ad577689eb5b98a036ea99ee5 MD5 · raw file

  1. /*
  2. * Copyright (C) 2011-2013 The Animo Project
  3. * http://animotron.org
  4. *
  5. * This file is part of Animotron.
  6. *
  7. * Animotron is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License as
  9. * published by the Free Software Foundation, either version 3 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * Animotron is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU Affero General Public License for more details.
  16. *
  17. * You should have received a copy of
  18. * the GNU Affero General Public License along with Animotron.
  19. * If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package org.animotron.statement.instruction.compare;
  22. import org.animotron.statement.AbstractStatement;
  23. /**
  24. * 'Less' instruction.
  25. *
  26. * @author <a href="mailto:shabanovd@gmail.com">Dmitriy Shabanov</a>
  27. *
  28. */
  29. public class LT extends AbstractStatement {
  30. public static final LT _ = new LT();
  31. private LT() { super("LT"); }
  32. }