1 package com.genimen.djeneric.test.strong; 2 3 public interface CustomerQbe 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 String getName(); 15 16 public void setName(String value) throws TestException; 17 18 public String getStreet(); 19 20 public void setStreet(String value) throws TestException; 21 22 public String getCity(); 23 24 public void setCity(String value) throws TestException; 25 26 public String getZipCode(); 27 28 public void setZipCode(String value) throws TestException; 29 30 } | Popular Tags |