1 /* 2 * Copyright (C) Chaperon. All rights reserved. 3 * ------------------------------------------------------------------------- 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE file. 7 */ 8 9 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 /** 20 * Return a string representation of the conflict. 21 * 22 * @return String representation of the conflict. 23 */ 24 public abstract String toString(); 25 } 26