jjg@283: /* jjg@1521: * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved. jjg@283: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@283: * jjg@283: * This code is free software; you can redistribute it and/or modify it jjg@283: * under the terms of the GNU General Public License version 2 only, as ohair@554: * published by the Free Software Foundation. Oracle designates this jjg@283: * particular file as subject to the "Classpath" exception as provided ohair@554: * by Oracle in the LICENSE file that accompanied this code. jjg@283: * jjg@283: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@283: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@283: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@283: * version 2 for more details (a copy is included in the LICENSE file that jjg@283: * accompanied this code). jjg@283: * jjg@283: * You should have received a copy of the GNU General Public License version jjg@283: * 2 along with this work; if not, write to the Free Software Foundation, jjg@283: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@283: * ohair@554: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@554: * or visit www.oracle.com if you need additional information or have any ohair@554: * questions. jjg@283: */ jjg@283: jjg@283: package com.sun.tools.javap; jjg@283: jjg@283: import com.sun.tools.classfile.Instruction; jjg@283: jjg@283: jjg@283: /* jjg@283: * Write additional details for an instruction. jjg@283: * jjg@581: *

This is NOT part of any supported API. jjg@581: * If you write code that depends on this, you do so at your own risk. jjg@283: * This code and its internal interfaces are subject to change or jjg@283: * deletion without notice. jjg@283: */ jjg@283: public abstract class InstructionDetailWriter extends BasicWriter { jjg@283: public enum Kind { jjg@283: LOCAL_VARS("localVariables"), jjg@283: LOCAL_VAR_TYPES("localVariableTypes"), jjg@283: SOURCE("source"), jjg@283: STACKMAPS("stackMaps"), jjg@1521: TRY_BLOCKS("tryBlocks"), jjg@1521: TYPE_ANNOS("typeAnnotations"); jjg@1521: jjg@283: Kind(String option) { jjg@283: this.option = option; jjg@283: } jjg@1521: jjg@283: final String option; jjg@283: } jjg@815: jjg@283: InstructionDetailWriter(Context context) { jjg@283: super(context); jjg@283: } jjg@283: jjg@283: abstract void writeDetails(Instruction instr); jjg@283: void flush() { } jjg@283: }