/razpub/src/com/razie/pubstage/components/RazComponent.java

http://razpub.googlecode.com/ · Java · 11 lines · 5 code · 2 blank · 4 comment · 0 complexity · 4e34abf713290ac4b3b2eb38c5c4fcd5 MD5 · raw file

  1. package com.razie.pubstage.components;
  2. import java.util.List;
  3. /**
  4. * a component is totally manageable and reconfigurable. This is the basic interface to allow that
  5. *
  6. */
  7. public interface RazComponent {
  8. List<RazFunction> getFunctions();
  9. }