com.vladsch.flexmark.ext.typographic.TypographicVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-ext-typographic Show documentation
Show all versions of flexmark-ext-typographic Show documentation
flexmark-java extension for typographic
/*
* 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