All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.ext.typographic.TypographicVisitor Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
/*
 * Copyright (c) 2015-2016 Vladimir Schneider , all rights reserved.
 *
 * This code is private property of the copyright holder and cannot be used without
 * having obtained a license or prior written permission of the of the copyright holder.
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

package com.vladsch.flexmark.ext.typographic;

import com.vladsch.flexmark.ast.VisitHandler;

public interface TypographicVisitor {
    static  VisitHandler[] VISIT_HANDLERS(V visitor) {
        return new VisitHandler[] {
                new VisitHandler<>(TypographicSmarts.class, visitor::visit),
                new VisitHandler<>(TypographicQuotes.class, visitor::visit),
        };
    }

    void visit(TypographicSmarts node);
    void visit(TypographicQuotes node);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy