/src/mpv5/compiler/LazyInvocable.java

http://mp-rechnungs-und-kundenverwaltung.googlecode.com/ · Java · 29 lines · 7 code · 2 blank · 20 comment · 0 complexity · 5ee03609db0fefc751c8862a7ff446dd MD5 · raw file

  1. /**
  2. * This file is part of YaBS-UI.
  3. *
  4. * YaBS-UI is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * YaBS is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with YaBS-UI. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package mpv5.compiler;
  18. import mpv5.db.common.DatabaseObject;
  19. /**
  20. *
  21. * @author anti
  22. */
  23. public interface LazyInvocable {
  24. public String getScript();
  25. public void setScript(String script);
  26. public String doIt(DatabaseObject dbo);
  27. }