/eclipse-plugin/plugins/com.google.test.metric.eclipse.doc/src/main/java/com/google/test/metric/eclipse/doc/HelpContexts.java

http://testability-explorer.googlecode.com/ · Java · 42 lines · 21 code · 1 blank · 20 comment · 0 complexity · 03d16c52cf0960516da2463b67539a37 MD5 · raw file

  1. /*
  2. * Copyright 2009 Google Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.google.test.metric.eclipse.doc;
  17. /**
  18. * Help contexts for Testability Explorer UI.
  19. *
  20. * @author klundberg@google.com (Karin Lundberg)
  21. */
  22. public interface HelpContexts {
  23. public static final String TESTABILITY_PROJECT = "com.google.test.metric.eclipse.doc.project";
  24. public static final String TESTABILITY_WHITELIST = "com.google.test.metric.eclipse.doc.whitelist";
  25. public static final String TESTABILITY_REPORT_FOLDER =
  26. "com.google.test.metric.eclipse.doc.report_folder";
  27. public static final String TESTABILITY_RUN_IN_COMPILATION =
  28. "com.google.test.metric.eclipse.doc.run_compilation";
  29. public static final String TESTABILITY_DEPTH =
  30. "com.google.test.metric.eclipse.doc.depth";
  31. public static final String TESTABILITY_CYCLOMATIC_COST =
  32. "com.google.test.metric.eclipse.doc.cyclomatic_cost";
  33. public static final String TESTABILITY_GLOBAL_STATE_COST =
  34. "com.google.test.metric.eclipse.doc.global_state_cost";
  35. public static final String TESTABILITY_MAX_COST_EXCELLENT_CLASSES =
  36. "com.google.test.metric.eclipse.doc.max_cost_excellent_classes";
  37. public static final String TESTABILITY_MAX_COST_ACCEPTABLE_CLASSES =
  38. "com.google.test.metric.eclipse.doc.max_cost_acceptable_classes";
  39. public static final String TESTABILITY_MAX_CLASSES_IN_REPORT =
  40. "com.google.test.metric.eclipse.doc.max_classes_in_report";
  41. }