NodeInterface.java revision 12651:6ef01bd40ce2
1139749Simp/*
286752Sfjoe * Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
386752Sfjoe * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
486752Sfjoe *
586752Sfjoe * This code is free software; you can redistribute it and/or modify it
686752Sfjoe * under the terms of the GNU General Public License version 2 only, as
786752Sfjoe * published by the Free Software Foundation.
886752Sfjoe *
986752Sfjoe * This code is distributed in the hope that it will be useful, but WITHOUT
1086752Sfjoe * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1186752Sfjoe * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1286752Sfjoe * version 2 for more details (a copy is included in the LICENSE file that
1386752Sfjoe * accompanied this code).
1486752Sfjoe *
1586752Sfjoe * You should have received a copy of the GNU General Public License version
1686752Sfjoe * 2 along with this work; if not, write to the Free Software Foundation,
1786752Sfjoe * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1886752Sfjoe *
1986752Sfjoe * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2086752Sfjoe * or visit www.oracle.com if you need additional information or have any
2186752Sfjoe * questions.
2286752Sfjoe */
2386752Sfjoepackage org.graalvm.compiler.graph;
2486752Sfjoe
2586752Sfjoepublic interface NodeInterface {
2686752Sfjoe    Node asNode();
2786752Sfjoe}
2886752Sfjoe