Ejemplo n.º 1
0
 public boolean definesMRJob() {
   return lps.getDefinesMRJob();
 }
Ejemplo n.º 2
0
 public boolean getProducesIntermediateOutput() {
   return lps.getProducesIntermediateOutput();
 }
Ejemplo n.º 3
0
 public boolean isAligner() {
   return lps.isAligner();
 }
Ejemplo n.º 4
0
 /**
  * Method to get the compatible job type for the LOP
  *
  * @return
  */
 public int getCompatibleJobs() {
   return lps.getCompatibleJobs();
 }
Ejemplo n.º 5
0
 /** Method to find if the lop breaks alignment */
 public boolean getBreaksAlignment() {
   return lps.getBreaksAlignment();
 }
Ejemplo n.º 6
0
 /**
  * Method to get the execution type (CP or MR) of LOP
  *
  * @return
  */
 public ExecType getExecType() {
   return lps.getExecType();
 }
Ejemplo n.º 7
0
 /**
  * Method to get the location property of LOP
  *
  * @return
  */
 public ExecLocation getExecLocation() {
   return lps.getExecLocation();
 }
Ejemplo n.º 8
0
 public void setLevel() {
   lps.setLevel(inputs);
 }
Ejemplo n.º 9
0
 public int getLevel() {
   return lps.getLevel();
 }
Ejemplo n.º 10
0
 /** Method to return the ID of LOP */
 public long getID() {
   return lps.getID();
 }