1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package org.uic.ticket.api.spec; public interface IVatDetail { public int getCountry(); public void setCountry(int country); public int getPercentage(); public void setPercentage(int percentage); public Long getAmount(); public void setAmount(Long amount); public String getVatId(); public void setVatId(String vatId); }