KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > codeassist > RelevanceConstants


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.codeassist;
12
13 public interface RelevanceConstants {
14     
15     int R_DEFAULT = 0;
16     int R_INTERESTING = 5;
17     int R_CASE = 10;
18     int R_CAMEL_CASE = 5;
19     int R_EXACT_NAME = 4;
20     int R_EXPECTED_TYPE = 20;
21     int R_EXACT_EXPECTED_TYPE = 30;
22     int R_INTERFACE = 20;
23     int R_CLASS = 20;
24     int R_ENUM = 20;
25     int R_ANNOTATION = 20;
26     int R_EXCEPTION = 20;
27     int R_ENUM_CONSTANT = 20;
28     int R_ABSTRACT_METHOD = 20;
29     int R_NON_STATIC = 11;
30     int R_UNQUALIFIED = 3;
31     int R_QUALIFIED = 2;
32     int R_NAME_FIRST_PREFIX = 6;
33     int R_NAME_PREFIX = 5;
34     int R_NAME_FIRST_SUFFIX = 4;
35     int R_NAME_SUFFIX = 3;
36     int R_NAME_LESS_NEW_CHARACTERS = 15;
37     int R_METHOD_OVERIDE = 3;
38     int R_NON_RESTRICTED = 3;
39     int R_TRUE_OR_FALSE = 1;
40     int R_INLINE_TAG = 31;
41     int R_VALUE_TAG = 31;
42     int R_NON_INHERITED = 2;
43     int R_NO_PROBLEMS = 1;
44     int R_RESOLVED = 1;
45     int R_TARGET = 5;
46 }
47
Popular Tags