com.github.podal.codejavadoc.CodeConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codejavadoc Show documentation
Show all versions of codejavadoc Show documentation
Tool for copying java code to javadoc
The newest version!
package com.github.podal.codejavadoc;
import java.util.regex.Pattern;
public interface CodeConstants {
String START_STRING = "\n";
String END_STRING = "\n";
Pattern PATTERN_START = Pattern.compile(".*.*");
Pattern PATTERN_END = Pattern.compile(".*.*");
Pattern PATTERN_WITH_CHECK = Pattern
.compile(".*.*");
Pattern PATTERN_VOID_METHOD = Pattern.compile(".*void (.*)\\(\\).*\\{.*");
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy