01: package org.drools;
02:
03: public interface CheeseInterface {
04:
05: public String getType();
06:
07: public int getPrice();
08:
09: /**
10: * @param price the price to set
11: */
12: public void setPrice(final int price);
13:
14: /**
15: * @param type the type to set
16: */
17: public void setType(final String type);
18:
19: }
|