Writing a Module
Every module written for webflow, the class must implement the interface Module.
public class My_module implements Module { …. }
The Module interface is defined in package webflow.backend
public interface Module {
public MetaModule initialize();