cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X

How to execute ModelCheck?

ddhini-2
2-Guest

How to execute ModelCheck?

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.

0 REPLIES 0
Top Tags