Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

NavigationSection.java 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * SonarQube, open source software quality management tool.
  3. * Copyright (C) 2008-2014 SonarSource
  4. * mailto:contact AT sonarsource DOT com
  5. *
  6. * SonarQube is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * SonarQube is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public License
  17. * along with this program; if not, write to the Free Software Foundation,
  18. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. */
  20. package org.sonar.api.web;
  21. import java.lang.annotation.ElementType;
  22. import java.lang.annotation.Retention;
  23. import java.lang.annotation.RetentionPolicy;
  24. import java.lang.annotation.Target;
  25. /**
  26. * The Page is displayed only in listed sections. This annotation is ignored on Widgets.
  27. *
  28. * @since 1.11
  29. */
  30. @Retention(RetentionPolicy.RUNTIME)
  31. @Target(ElementType.TYPE)
  32. public @interface NavigationSection {
  33. String HOME = "home";
  34. String RESOURCE = "resource";
  35. /**
  36. * Support removed in 5.1. See https://jira.sonarsource.com/browse/SONAR-6016.
  37. * @deprecated in 4.5, as it costs too much to maintain and update.
  38. * @see <a href="https://jira.sonarsource.com/browse/SONAR-5321">SONAR-5321</a>
  39. */
  40. @Deprecated
  41. String RESOURCE_TAB = "resource_tab";
  42. String CONFIGURATION = "configuration";
  43. /**
  44. * Only Ruby and rails application. See "Extend Web Application" section of http://redirect.sonarsource.com/doc/extension-guide.html.
  45. * Use the resource parameter in order to get the current resource.
  46. *
  47. * @since 3.6
  48. */
  49. String RESOURCE_CONFIGURATION = "resource_configuration";
  50. String[] value() default { HOME };
  51. }