View Javadoc

1   /*
2    * PageInfoImpl.java
3    * Created on 4 Сентябрь 2006 г., 11:17
4    */
5   
6   package org.weda.common.impl;
7   
8   import org.weda.common.PageInfo;
9   import org.weda.enhance.InjectInplaceMessage;
10  
11  /**
12   *
13   * @author Mikhail Titov
14   */
15  public class PageInfoImpl implements PageInfo {
16      private String name;
17      @InjectInplaceMessage private String title;
18  
19      public String getName() {
20          return name;
21      }
22  
23      public void setName(String name) {
24          this.name = name;
25      }
26  
27      public String getTitle() {
28          return title;
29      }
30  
31      public void setTitle(String title) {
32          this.title = title;
33      }            
34  }