/** * <copyright> * </copyright> * * */ package org.reuseware.air.language.abstractsyntax.resource.as; /** * A simple interface to access information about matching brackets. */ public interface IAsBracketPair { /** * Returns the opening bracket. */ public String getOpeningBracket(); /** * Returns the closing bracket. */ public String getClosingBracket(); /** * Returns whether other bracket pairs shall be automatically closed, when used * inside of this bracket pair. */ public boolean isClosingEnabledInside(); }