1 package com.atlassian.plugin.web.descriptors;
2
3 import com.atlassian.plugin.web.WebInterfaceManager;
4
5 public class MockAbstractWebFragmentModuleDescriptor extends AbstractWebFragmentModuleDescriptor
6 {
7 protected MockAbstractWebFragmentModuleDescriptor(final WebInterfaceManager webInterfaceManager)
8 {
9 super(webInterfaceManager);
10 }
11
12 @Override
13 public Void getModule()
14 {
15 return null;
16 }
17 }