/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
- /*
- * Copyright 2009 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- package com.google.test.metric.eclipse.doc;
-
- /**
- * Help contexts for Testability Explorer UI.
- *
- * @author klundberg@google.com (Karin Lundberg)
- */
- public interface HelpContexts {
- public static final String TESTABILITY_PROJECT = "com.google.test.metric.eclipse.doc.project";
- public static final String TESTABILITY_WHITELIST = "com.google.test.metric.eclipse.doc.whitelist";
- public static final String TESTABILITY_REPORT_FOLDER =
- "com.google.test.metric.eclipse.doc.report_folder";
- public static final String TESTABILITY_RUN_IN_COMPILATION =
- "com.google.test.metric.eclipse.doc.run_compilation";
- public static final String TESTABILITY_DEPTH =
- "com.google.test.metric.eclipse.doc.depth";
- public static final String TESTABILITY_CYCLOMATIC_COST =
- "com.google.test.metric.eclipse.doc.cyclomatic_cost";
- public static final String TESTABILITY_GLOBAL_STATE_COST =
- "com.google.test.metric.eclipse.doc.global_state_cost";
- public static final String TESTABILITY_MAX_COST_EXCELLENT_CLASSES =
- "com.google.test.metric.eclipse.doc.max_cost_excellent_classes";
- public static final String TESTABILITY_MAX_COST_ACCEPTABLE_CLASSES =
- "com.google.test.metric.eclipse.doc.max_cost_acceptable_classes";
- public static final String TESTABILITY_MAX_CLASSES_IN_REPORT =
- "com.google.test.metric.eclipse.doc.max_classes_in_report";
- }