Skip to main content
1-Visitor
March 17, 2017
Question

How to execute ModelCheck?

  • March 17, 2017
  • 0 replies
  • 960 views

public void modelchk ( ) throws Exception {

  try{

    Model model=session.GetCurrentModel();

    ModelCheckInstructions checkInstr = pfcModelCheck.ModelCheckInstructions_Create();

  checkInstr.SetMode(ModelCheckMode.MODELCHECK_NO_GRAPHICS);

  checkInstr.SetShowInBrowser(true);

  checkInstr.SetConfigDir(null);

  ModelCheckResults modelCheckResults = session.ExecuteModelCheck(model, checkInstr);

  displaymessage("ModelCheckExecuted");

  JFrame f=new JFrame();

  JOptionPane.showMessageDialog(f,"ModelCheckExecuted");

  }

  catch(Exception e){

  displaymessage("No Model Were Found...");

  }

Where can i append my modelCheckResults can anyone explain?Thanks in Advance.