View Javadoc

1   package com.atlassian.plugin;
2   
3   import com.atlassian.plugin.elements.ResourceLocation;
4   import com.atlassian.plugin.elements.ResourceDescriptor;
5   
6   import java.util.List;
7   
8   public interface Resourced
9   {
10      List getResourceDescriptors();
11  
12      List getResourceDescriptors(String type);
13  
14      ResourceLocation getResourceLocation(String type, String name);
15  
16      /**
17       * @deprecated
18       */
19      ResourceDescriptor getResourceDescriptor(String type, String name);
20  }