View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.tck.testmodels.fruit;
8   
9   import java.util.List;
10  import java.util.Map;
11  
12  /**
13   * TODO
14   */
15  
16  public interface OrangeInterface extends Fruit
17  {
18      String getBrand();
19  
20      Integer getSegments();
21  
22      Double getRadius();
23  
24      void setBrand(String string);
25  
26      void setSegments(Integer integer);
27  
28      void setRadius(Double double1);
29  
30      List getListProperties();
31  
32      void setListProperties(List listProperties);
33  
34      Map getMapProperties();
35  
36      void setMapProperties(Map mapProperties);
37  
38      List getArrayProperties();
39  
40      void setArrayProperties(List arrayProperties);
41  
42      FruitCleaner getCleaner();
43  
44      void setCleaner(FruitCleaner cleaner);
45  
46      void wash();
47  
48      void polish();
49  }