01: /*
02: * Copyright (C) Chaperon. All rights reserved.
03: * -------------------------------------------------------------------------
04: * This software is published under the terms of the Apache Software License
05: * version 1.1, a copy of which has been included with this distribution in
06: * the LICENSE file.
07: */
08:
09: package net.sourceforge.chaperon.build.conflict;
10:
11: /**
12: * This class describes a conflict, which the parser automaton builder produce.
13: *
14: * @author <a href="mailto:stephan@apache.org">Stephan Michels </a>
15: * @version CVS $Id: Conflict.java,v 1.3 2003/12/09 19:55:52 benedikta Exp $
16: */
17: public abstract class Conflict {
18: /**
19: * Return a string representation of the conflict.
20: *
21: * @return String representation of the conflict.
22: */
23: public abstract String toString();
24: }
|