Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/ConstantPoolConstant.java')
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/ConstantPoolConstant.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/ConstantPoolConstant.java b/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/ConstantPoolConstant.java
new file mode 100644
index 000000000..abc13b255
--- /dev/null
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/comparator/java/ConstantPoolConstant.java
@@ -0,0 +1,39 @@
+/*******************************************************************************
+ * Copyright (c) 2009 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.equinox.p2.internal.repository.comparator.java;
+
+public interface ConstantPoolConstant {
+
+ int CONSTANT_Class = 7;
+ int CONSTANT_Fieldref = 9;
+ int CONSTANT_Methodref = 10;
+ int CONSTANT_InterfaceMethodref = 11;
+ int CONSTANT_String = 8;
+ int CONSTANT_Integer = 3;
+ int CONSTANT_Float = 4;
+ int CONSTANT_Long = 5;
+ int CONSTANT_Double = 6;
+ int CONSTANT_NameAndType = 12;
+ int CONSTANT_Utf8 = 1;
+
+ int CONSTANT_Methodref_SIZE = 5;
+ int CONSTANT_Class_SIZE = 3;
+ int CONSTANT_Double_SIZE = 9;
+ int CONSTANT_Fieldref_SIZE = 5;
+ int CONSTANT_Float_SIZE = 5;
+ int CONSTANT_Integer_SIZE = 5;
+ int CONSTANT_InterfaceMethodref_SIZE = 5;
+ int CONSTANT_Long_SIZE = 9;
+ int CONSTANT_String_SIZE = 3;
+ int CONSTANT_Utf8_SIZE = 3;
+ int CONSTANT_NameAndType_SIZE = 5;
+
+}

Back to the top