CheeseInterface.java :  » Rule-Engine » drolls-5.0 » org » drools » Java Open Source

Java Open Source » Rule Engine » drolls 5.0 
drolls 5.0 » org » drools » CheeseInterface.java
package org.drools;

public interface CheeseInterface {

    public String getType();

    public int getPrice();

    /**
     * @param price the price to set
     */
    public void setPrice(final int price);

    /**
     * @param type the type to set
     */
    public void setType(final String type);

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.