utilities
Class Jobs

java.lang.Object
  |
  +--utilities.Jobs

public class Jobs
extends java.lang.Object

A jobs object which contains the information for one job of the model (i.e. one network)

Author:
Kevin Zollman

Constructor Summary
Jobs(int i, java.lang.String d, int[][] m)
          Returns a job object that is fully specified
 
Method Summary
 java.lang.String getDescrip()
          Returns the description of the job
 int getJobID()
          Returns the job id number
 int[][] getMatrix()
          Returns the adjacency matrix
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Jobs

public Jobs(int i,
            java.lang.String d,
            int[][] m)
Returns a job object that is fully specified

Parameters:
i - The id number
d - The description of the job
m - The adjacency matrix
Method Detail

getJobID

public int getJobID()
Returns the job id number

Returns:
The job id number

getDescrip

public java.lang.String getDescrip()
Returns the description of the job

Returns:
The description

getMatrix

public int[][] getMatrix()
Returns the adjacency matrix

Returns:
The matrix