Package org.pdfclown.samples.cli

Source Code of org.pdfclown.samples.cli.Utils

package org.pdfclown.samples.cli;

import java.util.Scanner;

class Utils
{
  public static void prompt(String message)
  {
    System.out.println("\n" + message);
    System.out.println("Press ENTER to continue");
    try
    {
      Scanner in = new Scanner(System.in);
      in.nextLine();
    }
    catch(Exception e)
    {}
  }
}
TOP

Related Classes of org.pdfclown.samples.cli.Utils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.