Revision 8692

View differences:

trunk/applications/appCatalogYNomenclatorClient/src/es/gva/cit/catalogClient/querys/Query.java
49 49
 * @author Jorge Piera Llodra (piera_jor@gva.es)
50 50
 */
51 51
public class Query {
52
	public static int SEARCH_SERVICE = 0;
53
	public static int SEARCH_DATA = 1;
52 54

  
55
	private int searchType = SEARCH_DATA;
53 56
/**
54 57
 * 
55 58
 * 
......
529 532
           
530 533
        return null;        
531 534
    } 
535
    
536
    public int getSearchType() {
537
    	return searchType;
538
    }
539

  
540
    public void setSearchType(int searchType) {
541
    	this.searchType = searchType;
542
    } 
532 543
 }

Also available in: Unified diff