rt/vm/src/main/java/org/apidesign/vm4brwsr/ObfuscationDelegate.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 30 Oct 2013 17:15:23 +0100
changeset 1392 da9e5973e699
permissions -rw-r--r--
Adopting to JDK8's Nashorn differences. Most tests should now pass with Nashorn now.
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.vm4brwsr;
    19 
    20 import java.io.IOException;
    21 import org.apidesign.vm4brwsr.ByteCodeParser.ClassData;
    22 import org.apidesign.vm4brwsr.ByteCodeParser.FieldData;
    23 import org.apidesign.vm4brwsr.ByteCodeParser.MethodData;
    24 
    25 abstract class ObfuscationDelegate {
    26     static ObfuscationDelegate NULL =
    27             new ObfuscationDelegate() {
    28                 @Override
    29                 public void exportJSProperty(Appendable out,
    30                                              String destObject,
    31                                              String propertyName)
    32                             throws IOException {
    33                 }
    34 
    35                 @Override
    36                 public void exportClass(Appendable out,
    37                                         String destObject,
    38                                         String mangledName,
    39                                         ClassData classData)
    40                                             throws IOException {
    41                 }
    42 
    43                 @Override
    44                 public void exportMethod(Appendable out,
    45                                          String destObject,
    46                                          String mangledName,
    47                                          MethodData methodData)
    48                                              throws IOException {
    49                 }
    50 
    51                 @Override
    52                 public void exportField(Appendable out,
    53                                         String destObject,
    54                                         String mangledName,
    55                                         FieldData fieldData)
    56                                             throws IOException {
    57                 }
    58             };
    59 
    60     public abstract void exportJSProperty(
    61             Appendable out, String destObject, String propertyName)
    62                 throws IOException;
    63 
    64     public abstract void exportClass(
    65             Appendable out, String destObject, String mangledName,
    66             ClassData classData) throws IOException;
    67 
    68     public abstract void exportMethod(
    69             Appendable out, String destObject, String mangledName,
    70             MethodData methodData) throws IOException;
    71 
    72     public abstract void exportField(
    73             Appendable out, String destObject, String mangledName,
    74             FieldData fieldData) throws IOException;
    75 }