Package com.acme

Examples of com.acme.DataProvider


@SuppressWarnings("all")
public class TestModule implements Module {
  private RuntimeModule runtimeModule = new com.acme.RuntimeModule();
 
  private DataProvider _toInstance0() {
    final DataProvider _function = new DataProvider() {
      public String getData() {
        return "dummy-data";
      }
    };
    return _function;
View Full Code Here

TOP

Related Classes of com.acme.DataProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.