| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008 Google Inc. | 2 * Copyright 2008 Google Inc. |
| 3 * | 3 * |
| 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not | 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not |
| 5 * use this file except in compliance with the License. You may obtain a copy of | 5 * use this file except in compliance with the License. You may obtain a copy of |
| 6 * the License at | 6 * the License at |
| 7 * | 7 * |
| 8 * http://www.apache.org/licenses/LICENSE-2.0 | 8 * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 * | 9 * |
| 10 * Unless required by applicable law or agreed to in writing, software | 10 * Unless required by applicable law or agreed to in writing, software |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 /*@Named("id") byte getId();*/ | 37 /*@Named("id") byte getId();*/ |
| 38 | 38 |
| 39 @Named("leaves") short getLeaves(); | 39 @Named("leaves") short getLeaves(); |
| 40 | 40 |
| 41 @Named("eaten") boolean isEaten(); | 41 @Named("eaten") boolean isEaten(); |
| 42 | 42 |
| 43 @Named("name") String getName(); | 43 @Named("name") String getName(); |
| 44 | 44 |
| 45 @Named("color") Color getColor(); | 45 @Named("color") Color getColor(); |
| 46 | 46 |
| 47 @Named("family") Fruit.Family getFamily(); |
| 48 |
| 47 FruitGinjector getGinjector(); | 49 FruitGinjector getGinjector(); |
| 48 } | 50 } |
| OLD | NEW |