OnMatch.java 174 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 package com.xdy.util.regex; import java.util.regex.Matcher; /** * Created by gagaprince on 15-12-16. */ public interface OnMatch { public void onMatch(Matcher mt); }