8112746: Followup to JDK-8059557 (JEP 245)

Several improvements to range/constraint check feature.

Reviewed-by: coleenp, ddmitriev, sangheki, kbarrett
This commit is contained in:
Gerard Ziemski 2015-08-13 17:17:56 -05:00
parent 4694fbd776
commit 2fdc0d3f21
12 changed files with 376 additions and 445 deletions

View file

@ -38,6 +38,11 @@
* then we need to use constraint instead.
*/
class CommandLineError : public AllStatic {
public:
static void print(bool verbose, const char* msg, ...);
};
class CommandLineFlagRange : public CHeapObj<mtInternal> {
private:
const char* _name;