Uses of Interface
com.altair.hwm.interfaces.loadsubmission.IHWMJob

Packages that use IHWMJob
com.altair.hwm.comm.loadsubmission.ecompute   
com.altair.hwm.comm.loadsubmission.jobservices   
com.altair.hwm.interfaces.loadsubmission   
test.testclient.loadsubmission   
 

Uses of IHWMJob in com.altair.hwm.comm.loadsubmission.ecompute
 

Classes in com.altair.hwm.comm.loadsubmission.ecompute that implement IHWMJob
 class HWMEComputeJob
          Title: HWMEComputeJob
 

Methods in com.altair.hwm.comm.loadsubmission.ecompute that return IHWMJob
 IHWMJob HWMEComputeJobManager.CreateJobInstance()
          This method creates an instance of IHWMJob without a GUI This mode is primarily used for creating a default job in to which different parameters can be set through APIs available in IHWMJob.
 IHWMJob HWMEComputeJobManager.CreateJobInstance(java.lang.String strJobID)
          This method creates an instance of IHWMJob without a GUI This mode is primarily used for creating a default job in to which different parameters can be set through APIs available in IHWMJob.
 IHWMJob HWMEComputeJobManager.CreateJobInstanceWithDialog()
          CreateJobInstanceWithDialog - creates a job instance using parameters from an interactive dialog.
 IHWMJob HWMEComputeUI.GetJobFromUI()
           
 IHWMJob HWMEComputeJobManager.GetJobInstance(java.lang.String strJobID)
          This method returns the IHWMJob instance held by IHWMJobManager against the specified JobID.
 IHWMJob HWMEComputeJobManager.ShowJobSubmissionDialog(IHWMJob job)
          This method creates an instance of IHWMJob with parameters set in a GUI dialog.
 

Methods in com.altair.hwm.comm.loadsubmission.ecompute with parameters of type IHWMJob
 void HWMEComputeJobManager.AddJobListener(IHWMJobListener listener, IHWMJob hwmJob)
          AddJobListener - adds the run entity as a listener
 IHWMJobStatus HWMEComputeJobManager.GetJobStatus(IHWMJob job)
          Gets the status of a job submitted to E-Compute This method contacts the E-compute server to verify the status
 void HWMEComputeJobManager.RemoveListener(IHWMJobListener listener, IHWMJob hwmJob)
          RemoveListener - removes the run entity that is a listener
 IHWMJob HWMEComputeJobManager.ShowJobSubmissionDialog(IHWMJob job)
          This method creates an instance of IHWMJob with parameters set in a GUI dialog.
 java.lang.String HWMEComputeJobManager.SubmitJob(IHWMJob job)
          SubmitJob - submits a job to E-Compute
 

Uses of IHWMJob in com.altair.hwm.comm.loadsubmission.jobservices
 

Classes in com.altair.hwm.comm.loadsubmission.jobservices that implement IHWMJob
 class HWMOptistructJob
          Title: HWMOptistructJob Description: Class for Optistruct Job Has methods to update a job id , job status and set command parameters for running this job from a batch file.
 

Methods in com.altair.hwm.comm.loadsubmission.jobservices that return IHWMJob
 IHWMJob HWMLocalJobManager.CreateJobInstance()
          This method creates an instance of IHWMJob without a GUI This mode is primarily used for creating a default job in to which different parameters can be set through APIs available in IHWMJob.
 IHWMJob HWMLocalJobManager.CreateJobInstance(java.lang.String strJobID)
          GetJobInstance - returns a job if existent based on ID
 IHWMJob HWMLocalJobManager.CreateJobInstanceWithDialog()
           
 IHWMJob HWMLocalJobManager.GetJobInstance(java.lang.String strJobID)
           
 IHWMJob HWMLocalJobManager.ShowJobSubmissionDialog(IHWMJob job)
          This method creates an instance of IHWMJob with parameters set in a GUI dialog.
 

Methods in com.altair.hwm.comm.loadsubmission.jobservices with parameters of type IHWMJob
 void HWMLocalJobManager.AddJobListener(IHWMJobListener listener, IHWMJob hwmJob)
           
 IHWMJobStatus HWMLocalJobManager.GetJobStatus(IHWMJob job)
          Gets the status of a job submitted This method iterates through the jobs vector to verify the status Additionally reads the status from a binary file if that is present in the job output directory
 void HWMLocalJobManager.RemoveListener(IHWMJobListener listener, IHWMJob hwmJob)
           
 IHWMJob HWMLocalJobManager.ShowJobSubmissionDialog(IHWMJob job)
          This method creates an instance of IHWMJob with parameters set in a GUI dialog.
 java.lang.String HWMLocalJobManager.SubmitJob(IHWMJob job)
          SubmitJob - solve the deck file using the solver Add the submitted job to the job manager so that its status can be tracked.
 

Constructors in com.altair.hwm.comm.loadsubmission.jobservices with parameters of type IHWMJob
HWMLaunchProcess(java.lang.String strCmd, javax.swing.JTextArea txtArea, IHWMJob job)
          HWMLaunchProcess - constructor
HWMProcessOutputReader(java.io.InputStream is, javax.swing.JTextArea textArea, IHWMJob job)
           
 

Uses of IHWMJob in com.altair.hwm.interfaces.loadsubmission
 

Methods in com.altair.hwm.interfaces.loadsubmission that return IHWMJob
 IHWMJob IHWMJobManager.CreateJobInstance()
          This method creates an instance of IHWMJob without a GUI This mode is primarily used for creating a default job in to which different parameters can be set through APIs available in IHWMJob.
 IHWMJob IHWMJobManager.CreateJobInstanceWithDialog()
          This method creates an instance of IHWMJob with parameters set in a GUI dialog.
 IHWMJob IHWMJobManager.GetJobInstance(java.lang.String strJobID)
          This method returns the IHWMJob instance held by IHWMJobManager against the specified JobID.
 

Methods in com.altair.hwm.interfaces.loadsubmission with parameters of type IHWMJob
 void IHWMJobManager.AddJobListener(IHWMJobListener listener, IHWMJob hwmJob)
          This method adds the specified listener in order to get call back events from the specified job.
 IHWMJobStatus IHWMJobManager.GetJobStatus(IHWMJob hwmJob)
          This method returns the status of the specified job as an instance of IHWMJobStatus.
 void IHWMJobListener.OnHWMJobCompleted(IHWMJob job)
          This method is called upon completion of the job.
 void IHWMJobManager.RemoveListener(IHWMJobListener listener, IHWMJob hwmJob)
          This method removes the specified listener in order to stop getting call back events from the specified job.
 java.lang.String IHWMJobManager.SubmitJob(IHWMJob job)
          This method submits the specified job for computation.
 

Uses of IHWMJob in test.testclient.loadsubmission
 

Methods in test.testclient.loadsubmission with parameters of type IHWMJob
 void HWMTest.OnHWMJobCompleted(IHWMJob job)
          When job is completed throw appropriate message.