001 package org.shiftone.jrat.inject; 002 003 004 import org.shiftone.jrat.inject.bytecode.TransformerOptions; 005 import org.shiftone.jrat.util.log.Logger; 006 007 008 /** 009 * This is a placeholder for any options that are not of the concern of the 010 * Transformer. 011 * 012 * @author jeff@shiftone.org (Jeff Drost) 013 */ 014 public class InjectorOptions extends TransformerOptions { 015 016 private static final Logger LOG = Logger.getLogger(InjectorOptions.class); 017 018 /* 019 * private boolean forceOverwrite = false; 020 * 021 * private boolean overwriteNewer = false; 022 * 023 * private boolean preserveLastModified = false; 024 */ 025 }