View Javadoc

1   /**
2    * Copyright 2006 Matthew Purland (m.purland@gmail.com)
3    *
4    *  Licensed under the Apache License, Version 2.0 (the "License");
5    *  you may not use this file except in compliance with the License.
6    *  You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *  Unless required by applicable law or agreed to in writing, software
11   *  distributed under the License is distributed on an "AS IS" BASIS,
12   *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *  See the License for the specific language governing permissions and
14   *  limitations under the License.
15   */
16  package net.sf.mud4j.world.item;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  import net.sf.mud4j.effect.EffectBehavior;
22  
23  /**
24   * Abstract implementation for an item type.
25   *
26   * @author Matthew Purland
27   */
28  public class AbstractItem implements Item {
29  
30      // Name of the item
31      private String itemName;
32      
33      // List of item types
34      private List<ItemType> itemTypes = new ArrayList<ItemType>();
35      
36      // Effect behavior for item effects
37      private EffectBehavior effectBehavior;
38      
39      /**
40       * {@inheritDoc}
41       */
42      public String getName() {
43          return itemName;
44      }
45      
46      /**
47       * {@inheritDoc}
48       */
49      public void setName(String newItemName) {
50          this.itemName = newItemName;
51      }    
52  
53      /**
54       * {@inheritDoc}
55       */
56      public List<ItemType> getTypes() {
57          return itemTypes;
58      }
59  
60      /**
61       * {@inheritDoc}
62       */
63      public EffectBehavior getEffectBehavior() {
64          return effectBehavior;
65      }
66  
67      /**
68       * {@inheritDoc}
69       */
70      public void setEffectBehavior(EffectBehavior effectBehavior) {
71          this.effectBehavior = effectBehavior;
72      }
73  
74  }