RegexState.java revision 1088:7e62d98d4625
115788Sjkh/*
250479Speter * Permission is hereby granted, free of charge, to any person obtaining a copy of
315788Sjkh * this software and associated documentation files (the "Software"), to deal in
415788Sjkh * the Software without restriction, including without limitation the rights to
515788Sjkh * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
615788Sjkh * of the Software, and to permit persons to whom the Software is furnished to do
715788Sjkh * so, subject to the following conditions:
815788Sjkh *
915788Sjkh * The above copyright notice and this permission notice shall be included in all
1015788Sjkh * copies or substantial portions of the Software.
1115788Sjkh *
1215788Sjkh * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1315788Sjkh * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1415788Sjkh * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1515788Sjkh * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1615788Sjkh * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1715788Sjkh * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1815788Sjkh * SOFTWARE.
1915788Sjkh */
2015788Sjkhpackage jdk.nashorn.internal.runtime.regexp.joni.constants;
2115788Sjkh
2215788Sjkh// we dont need this ATM
2315788Sjkh@SuppressWarnings("javadoc")
2415788Sjkhpublic interface RegexState {
2515788Sjkh    final int NORMAL          = 0;
2615788Sjkh    final int SEARCHING       = 1;
2715788Sjkh    final int COMPILING       = -1;
2815788Sjkh    final int MODIFY          = -2;
2915788Sjkh}
3015788Sjkh