lubomir@850: /** lubomir@850: * Back 2 Browser Bytecode Translator lubomir@850: * Copyright (C) 2012 Jaroslav Tulach lubomir@850: * lubomir@850: * This program is free software: you can redistribute it and/or modify lubomir@850: * it under the terms of the GNU General Public License as published by lubomir@850: * the Free Software Foundation, version 2 of the License. lubomir@850: * lubomir@850: * This program is distributed in the hope that it will be useful, lubomir@850: * but WITHOUT ANY WARRANTY; without even the implied warranty of lubomir@850: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the lubomir@850: * GNU General Public License for more details. lubomir@850: * lubomir@850: * You should have received a copy of the GNU General Public License lubomir@850: * along with this program. Look for COPYING file in the top folder. lubomir@850: * If not, see http://opensource.org/licenses/GPL-2.0. lubomir@850: */ lubomir@850: package org.apidesign.vm4brwsr; lubomir@850: lubomir@850: /** lubomir@869: * Defines obfuscation level of produced JavaScript files. lubomir@860: * lubomir@860: * @since 0.5 lubomir@850: */ lubomir@850: public enum ObfuscationLevel { lubomir@850: NONE, lubomir@869: MINIMAL, lubomir@869: MEDIUM, lubomir@869: FULL lubomir@850: }