import java.util.*;
class Parsing_Ship_Schema
{
	public static void main(String args[])
	{
		System.out.println("Please enter the name of the file you would like to parse..........");
		/*
		 * 
		 */
		Scanner sc=new Scanner(System.in);
		String fileName=sc.nextLine();
		System.out.println("............Started Parsing the schema..............");
		Schema_Parse_Types spt=new Schema_Parse_Types();
		if(spt.process(fileName))
		System.out.println(".....Types Vertices Obtained.....");
		Schema_Parse_Entities spe=new Schema_Parse_Entities();
		if(spe.process(fileName))
			System.out.println("....Entities Vertices Obtained.....");
		Schema_Parse_Rules spr=new Schema_Parse_Rules();
		if(spr.process(fileName))
			System.out.println(".......Rules Vertices Obtained......");
		Schema_Parse_Functions spf=new Schema_Parse_Functions();
		if(spf.process(fileName))
			System.out.println("......Functions Vertices Obtained.....");
		
		//if()
		
		
		
	}
}

