View Javadoc

1   package net.obsearch.example.l1;
2   
3   import java.io.File;
4   import java.io.IOException;
5   
6   import net.obsearch.example.OBSlice;
7   import net.obsearch.exception.IllegalIdException;
8   import net.obsearch.exception.NotFrozenException;
9   import net.obsearch.exception.OBException;
10  import net.obsearch.exception.OutOfRangeException;
11  import net.obsearch.index.utils.AbstractCommandLine;
12  import net.obsearch.stats.Statistics;
13  /**
14   * Command line matcher for MTD objects
15   * @author Arnoldo Jose Muller-Molina
16   *
17   */
18  public class HPMatcherL1  {/*extends HPMatcher<L1> {
19  
20  	@Override
21  	protected Class<L1> obtainClass() {
22  		return L1.class;
23  	}
24  	
25  	@Override
26  	protected AbstractCommandLine getReference() {
27  		return this;
28  	}
29  
30  	@Override
31  	protected L1 instantiate(String line) throws OBException {
32  		return new L1(line);
33  	}
34  	
35  	public static void main(String args[]){
36  		HPMatcherL1 s = new HPMatcherL1();
37  		s.processUserCommands(args);
38  	}
39  	
40  	protected boolean isValidObject(L1 object) throws OBException{		
41  		return true;
42  	}
43  
44  	*/
45  
46  }