View Javadoc

1   package com.atlassian.plugin.web.model;
2   
3   import javax.servlet.http.HttpServletRequest;
4   import java.util.Map;
5   
6   /**
7    * Represents a plain text, primarily used as a links name
8    */
9   public interface WebLabel extends WebParam
10  {
11      String getKey();
12  
13      String getNoKeyValue();
14  
15      String getDisplayableLabel(HttpServletRequest req, Map<String,Object> context);
16  }