01: /*
02: * Copyright (C) 2007, 2008 XStream Committers.
03: * All rights reserved.
04: *
05: * The software in this package is published under the terms of the BSD
06: * style license a copy of which has been included with this distribution in
07: * the LICENSE.txt file.
08: *
09: * Created on 07. November 2007 by Joerg Schaible
10: */
11: package com.thoughtworks.xstream.mapper;
12:
13: /**
14: * An interface for the configuration part of the AnnotationMapper.
15: *
16: * @author Jörg Schaible
17: * @since 1.3
18: */
19: public interface AnnotationConfiguration {
20:
21: void autodetectAnnotations(boolean mode);
22:
23: void processAnnotations(Class[] types);
24:
25: }
|