1 package com.genimen.djeneric.test.strong; 2 3 public interface ProductQbe 7 { 8 public void setQueryOperator(String propertyName, String operator) throws TestException; 9 10 public long getId(); 11 12 public void setId(long value) throws TestException; 13 14 public int getProductNumber(); 15 16 public void setProductNumber(int value) throws TestException; 17 18 public String getName(); 19 20 public void setName(String value) throws TestException; 21 22 public byte[] getDescription(); 23 24 public void setDescription(byte[] value) throws TestException; 25 26 } | Popular Tags |