Uses of Class
com.atlassian.confluence.labels.Label

Packages that use Label
com.atlassian.confluence.event.events.label   
com.atlassian.confluence.labels   
com.atlassian.confluence.labels.actions   
com.atlassian.confluence.labels.persistence.dao   
com.atlassian.confluence.labels.persistence.dao.hibernate   
com.atlassian.confluence.themes   
com.atlassian.confluence.user.actions   
com.atlassian.confluence.user.history   
com.atlassian.confluence.util   
 

Uses of Label in com.atlassian.confluence.event.events.label
 

Methods in com.atlassian.confluence.event.events.label that return Label
 Label LabelEvent.getLabel()
           
 

Constructors in com.atlassian.confluence.event.events.label with parameters of type Label
LabelAddEvent(Label source, Labelable labelled)
           
LabelCreateEvent(Label source)
           
LabelDeleteEvent(Label source)
           
LabelEvent(Label source)
           
LabelEvent(Label source, Labelable labelled)
           
LabelRemoveEvent(Label source, Labelable labelled)
           
 

Uses of Label in com.atlassian.confluence.labels
 

Methods in com.atlassian.confluence.labels that return Label
 Label DefaultLabelManager.getLabel(long id)
          Retrieve a label based on its id.
 Label DefaultLabelManager.getLabel(ParsedLabelName parsedLabelName)
           
 Label DefaultLabelManager.getLabel(String unparsedLabelName)
           
 Label DefaultLabelManager.getLabel(Label label)
           
 Label DefaultLabelManager.createLabel(Label label)
           
 Label Labelling.getLabel()
           
 Label LabelManager.getLabel(long id)
          Retrieve the label with the specified id.
 Label LabelManager.getLabel(ParsedLabelName parsedLabelName)
          Retrieve the label by name.
 Label LabelManager.getLabel(String unparsedLabelName)
          convenience method to fetch a label without having to call the label parser
 Label LabelManager.getLabel(Label label)
          Retrieve the persistent instance of the label with the exact same details as the specified label.
 Label LabelManager.createLabel(Label label)
           
 Label ParsedLabelName.addLabel(Labelable labelable, LabelManager labelManager)
           
 Label ParsedLabelName.toLabel()
           
 

Methods in com.atlassian.confluence.labels with parameters of type Label
 int DefaultLabelManager.addLabel(ContentEntityObject content, Label label)
           
 int DefaultLabelManager.removeLabel(ContentEntityObject content, Label label)
           
 List DefaultLabelManager.getRelatedLabels(Label label)
           
 List DefaultLabelManager.getRelatedLabels(Label label, int count)
           
 List DefaultLabelManager.getRelatedLabelsInSpace(Label label, String spaceKey)
           
 List DefaultLabelManager.getRelatedLabelsInSpace(Label label, String spaceKey, int maxResults)
           
 List DefaultLabelManager.getSpacesContainingContentWithLabel(Label label)
           
 List DefaultLabelManager.getCurrentContentForLabel(Label label)
           
 List DefaultLabelManager.getCurrentContentForLabelAndSpace(Label label, String spaceKey)
           
 List DefaultLabelManager.getSpacesWithLabel(Label label)
           
 boolean DefaultLabelManager.deleteLabel(Label label)
           
 Label DefaultLabelManager.getLabel(Label label)
           
 List DefaultLabelManager.getContent(Label label)
           
 int DefaultLabelManager.getContentCount(Label label)
           
 Label DefaultLabelManager.createLabel(Label label)
           
 int LabelManager.addLabel(ContentEntityObject content, Label label)
          Add a label to the specified content.
 int LabelManager.removeLabel(ContentEntityObject object, Label label)
          Remove a label from the specified content.
 boolean LabelManager.deleteLabel(Label l)
          Delete the specified label.
 Label LabelManager.getLabel(Label label)
          Retrieve the persistent instance of the label with the exact same details as the specified label.
 List LabelManager.getRelatedLabels(Label label)
          Retrieve the DEFAULT_LABEL_COUNT labels that are 'related' to the specified label.
 List LabelManager.getRelatedLabels(Label label, int maxResults)
          Retrieve the labels that are 'related' to the specified label.
 List LabelManager.getRelatedLabelsInSpace(Label label, String spaceKey)
          Retrieve the DEFAULT_LABEL_COUNT labels that are 'related' to the specified label and that are used to label content within the specified space.
 List LabelManager.getRelatedLabelsInSpace(Label label, String spaceKey, int maxResults)
          Retrieve the labels that are 'related' to the specified label and that are used to to label content within the specified space.
 List LabelManager.getSpacesContainingContentWithLabel(Label label)
          Look up the spaces that have been labelled by the specific label.
 List LabelManager.getCurrentContentForLabel(Label label)
          Get all content associated with a label and space Get all current content associated with a label and any space.
 List LabelManager.getCurrentContentForLabelAndSpace(Label label, String spaceKey)
          Get all current content associated with a label and space.
 List LabelManager.getSpacesWithLabel(Label label)
          Spaces cannot be directly labelled.
 List LabelManager.getContent(Label label)
           
 int LabelManager.getContentCount(Label label)
           
 Label LabelManager.createLabel(Label label)
           
static ParsedLabelName LabelParser.create(Label label)
           
static String LabelParser.render(Label label)
           
static boolean LabelPermissionSupport.userCanEditLabel(Label label, Labelable object, PermissionManager permissionManager)
           
static boolean Namespace.isPersonal(Label l)
           
static boolean Namespace.isTeam(Label l)
           
static boolean Namespace.isGlobal(Label l)
           
 

Constructors in com.atlassian.confluence.labels with parameters of type Label
Labelling(Label label, ContentEntityObject content, String user, String spaceKey)
           
 

Uses of Label in com.atlassian.confluence.labels.actions
 

Methods in com.atlassian.confluence.labels.actions that return Label
 Label ViewLabelAction.getLabel()
           
 

Methods in com.atlassian.confluence.labels.actions with parameters of type Label
 boolean AbstractLabelsForEntityAction.isPersonalLabel(Label label)
           
 boolean AddLabelToEntityBean.isPersonalLabel(Label label)
           
 boolean RemoveLabelFromEntityBean.isPersonalLabel(Label label)
           
 boolean ViewLabelsForEntityBean.isPersonalLabel(Label label)
           
 

Uses of Label in com.atlassian.confluence.labels.persistence.dao
 

Methods in com.atlassian.confluence.labels.persistence.dao that return Label
 Label LabelDao.findById(long id)
          Find the label by its id.
 Label LabelDao.findByLabel(Label label)
           
 Label LabelSearchResult.getLabel()
           
 

Methods in com.atlassian.confluence.labels.persistence.dao with parameters of type Label
 Label LabelDao.findByLabel(Label label)
           
 List LabelDao.findBySingleDegreeSeparation(Label label, int maxResults)
          Find the labels that are a single degree of separation away from the specified label.
 List LabelDao.findBySingleDegreeSeparation(Label label, String spaceKey, int maxResults)
           
 List LabelDao.findCurrentContentForLabel(Label label)
           
 List LabelDao.findCurrentContentForLabelAndSpace(Label label, String spaceKey)
           
 int LabelDao.findContentCountForLabel(Label label)
           
 List LabelDao.findSpacesContainingContentWithLabel(Label label)
           
 List LabelDao.findSpacesWithLabel(Label label)
           
 Labelling LabelDao.findLabellingByContentAndLabel(ContentEntityObject content, Label label)
           
 

Constructors in com.atlassian.confluence.labels.persistence.dao with parameters of type Label
LabelSearchResult(Label label, int count)
           
RankedLabelSearchResult(Label label, int rank, int count)
           
 

Uses of Label in com.atlassian.confluence.labels.persistence.dao.hibernate
 

Methods in com.atlassian.confluence.labels.persistence.dao.hibernate that return Label
 Label HibernateLabelDao.findById(long id)
           
 Label HibernateLabelDao.findByLabel(Label label)
           
 

Methods in com.atlassian.confluence.labels.persistence.dao.hibernate with parameters of type Label
 Label HibernateLabelDao.findByLabel(Label label)
           
 List HibernateLabelDao.findBySingleDegreeSeparation(Label label, int maxResults)
           
 List HibernateLabelDao.findBySingleDegreeSeparation(Label label, String spaceKey, int maxResults)
           
 List HibernateLabelDao.findContentForLabel(Label label)
           
 List HibernateLabelDao.findCurrentContentForLabel(Label label)
           
 int HibernateLabelDao.findContentCountForLabel(Label label)
           
 List HibernateLabelDao.findCurrentContentForLabelAndSpace(Label label, String spaceKey)
           
 List HibernateLabelDao.findSpacesContainingContentWithLabel(Label label)
           
 List HibernateLabelDao.findSpacesWithLabel(Label label)
           
 Labelling HibernateLabelDao.findLabellingByContentAndLabel(ContentEntityObject content, Label label)
           
 List HibernateLabelDao.findContentByLabel(Label label)
           
 

Uses of Label in com.atlassian.confluence.themes
 

Methods in com.atlassian.confluence.themes that return Label
 Label GlobalHelper.getLabel()
           
 

Uses of Label in com.atlassian.confluence.user.actions
 

Methods in com.atlassian.confluence.user.actions that return Label
 Label ViewMyLabelsAction.getCurrentLabel()
           
 

Methods in com.atlassian.confluence.user.actions with parameters of type Label
 int ViewMyLabelsAction.getContentCount(Label l)
           
 

Uses of Label in com.atlassian.confluence.user.history
 

Methods in com.atlassian.confluence.user.history with parameters of type Label
 void UserHistory.addLabel(Label label)
           
 

Uses of Label in com.atlassian.confluence.util
 

Methods in com.atlassian.confluence.util with parameters of type Label
static void LabelUtil.recordLabelInteractionInHistory(Label label)
           
 



Confluence is developed by Atlassian.