/* * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.css.parser; class LexerState { /** * Determine whether or not this state accepts the character. If the * character is accepted, then this state will be entered. * @param c the character to test * @return true if this state should be entered */ public boolean accepts(int c) { final int nRecognizers = recognizers != null ? recognizers.length : 0; for(int n=0; n