View Javadoc
1   package com.atlassian.plugin.web.descriptors;
2   
3   import com.atlassian.plugin.ModuleDescriptor;
4   import com.atlassian.plugin.StateAware;
5   import com.atlassian.plugin.web.Condition;
6   import com.atlassian.plugin.web.model.WebLabel;
7   import com.atlassian.plugin.web.model.WebParam;
8   
9   /**
10   * A convenience interface for web fragment descriptors
11   */
12  public interface WebFragmentModuleDescriptor<T> extends ModuleDescriptor<T>, WeightedDescriptor, StateAware, ContextAware, ConditionalDescriptor {
13      int getWeight();
14  
15      WebLabel getWebLabel();
16  
17      WebLabel getTooltip();
18  
19      Condition getCondition();
20  
21      WebParam getWebParams();
22  }