blob: 0b5aa264fa0318bd72b22643abd261ad8372330a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.refactoring.typeconstraints;
public interface ITypeConstraint {
/**
* Returns the resolved representation of the constraint.
* For example, if <code>toString</code> returns "[a] &lt;= [b]" and types of 'a' and 'b' are A and B,
* repespectively, then this method returns "A &lt;= B".
*
* This method is provided for debugging purposes only.
*/
public abstract String toResolvedString();
/**
* Returns whether this is a simple constraint. If so, it can be safely downcast to
* <code>SimpleTypeConstraint</code>.
*/
public boolean isSimpleTypeConstraint();
}