//------------------------------------------------------------------------------- // This package was automatically generated from EXPRESS (ISO STEP 10303 part11) // by a java generator build with the meta CASE tool Platypus // (alain.plantec@univ-brest.fr) // // Please, be aware that any hand-made updating of this file can be lost!!. //------------------------------------------------------------------------------- package CheddarBridge; import java.io.*; public class CheddarBridge_Parse { public static void main (String args[]) throws Exception { CheddarBridge_StepRepository repo = new CheddarBridge_StepRepository (); if (args.length == 1) { try { repo.parseFileNamed(args[0]); repo.write(new OutputStreamWriter(System.out)); } catch (Exception e) { throw (e); } finally { } } else { System.out.println("need one step file path arg"); } } }