VMConstant.java revision 12651:6ef01bd40ce2
11899Swollman/*
21899Swollman * Copyright (c) 2014, 2014, Oracle and/or its affiliates. All rights reserved.
31899Swollman * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
41899Swollman *
51899Swollman * This code is free software; you can redistribute it and/or modify it
61899Swollman * under the terms of the GNU General Public License version 2 only, as
71899Swollman * published by the Free Software Foundation.
81899Swollman *
91899Swollman * This code is distributed in the hope that it will be useful, but WITHOUT
101899Swollman * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
111899Swollman * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
121899Swollman * version 2 for more details (a copy is included in the LICENSE file that
131899Swollman * accompanied this code).
141899Swollman *
151899Swollman * You should have received a copy of the GNU General Public License version
161899Swollman * 2 along with this work; if not, write to the Free Software Foundation,
171899Swollman * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
181899Swollman *
191899Swollman * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
201899Swollman * or visit www.oracle.com if you need additional information or have any
211899Swollman * questions.
221899Swollman */
231899Swollmanpackage jdk.vm.ci.meta;
241899Swollman
251899Swollman/**
261899Swollman * Represents a constant that needs to be patched at runtime by the VM.
271899Swollman */
281899Swollmanpublic interface VMConstant extends Constant {
291899Swollman}
301899Swollman