jaroslav@611: /** jaroslav@611: * Back 2 Browser Bytecode Translator jaroslav@611: * Copyright (C) 2012 Jaroslav Tulach jaroslav@611: * jaroslav@611: * This program is free software: you can redistribute it and/or modify jaroslav@611: * it under the terms of the GNU General Public License as published by jaroslav@611: * the Free Software Foundation, version 2 of the License. jaroslav@611: * jaroslav@611: * This program is distributed in the hope that it will be useful, jaroslav@611: * but WITHOUT ANY WARRANTY; without even the implied warranty of jaroslav@611: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the jaroslav@611: * GNU General Public License for more details. jaroslav@611: * jaroslav@611: * You should have received a copy of the GNU General Public License jaroslav@611: * along with this program. Look for COPYING file in the top folder. jaroslav@611: * If not, see http://opensource.org/licenses/GPL-2.0. jaroslav@611: */ jaroslav@611: package org.apidesign.bck2brwsr.vmtest.impl; jaroslav@611: jaroslav@611: import java.lang.annotation.Retention; jaroslav@611: import java.lang.annotation.RetentionPolicy; jaroslav@611: jaroslav@611: /** Annotation to generate a ZIP or JAR file during build. jaroslav@611: * jaroslav@611: * @author Jaroslav Tulach jaroslav@611: */ jaroslav@611: @Retention(RetentionPolicy.SOURCE) jaroslav@611: @interface GenerateZip { jaroslav@611: String name(); jaroslav@611: jaroslav@611: /** manifest for the file */ jaroslav@611: String manifest() default ""; jaroslav@611: jaroslav@611: /** Array of names (at odd positions) and their content (on even) */ jaroslav@611: String[] contents(); jaroslav@611: }