View Javadoc

1   package de.matthias_burbach.mosaique.core.model;
2   
3   import java.util.List;
4   
5   /***
6    * @author Matthias Burbach
7    */
8   public class Jsp extends AbstractFileItem {
9       /***
10       * The name of this JSP.
11       */
12      private String name;
13  
14      /***
15       * The Tiles inserts of type {@link Insert} defined within this JSP.
16       */
17      private List inserts;
18  
19      /***
20       * @return The name of this JSP.
21       */
22      public String getName() {
23          return name;
24      }
25  
26      /***
27       * @param name The name of this JSP.
28       */
29      public void setName(final String name) {
30          this.name = name;
31      }
32  
33      /***
34       * @return The Tiles inserts of type {@link Insert} defined within this JSP.
35       */
36      public List getInserts() {
37          return inserts;
38      }
39  
40      /***
41       * @param inserts The Tiles inserts of type {@link Insert} defined within
42       *                this JSP.
43       */
44      public void setInserts(final List inserts) {
45          this.inserts = inserts;
46      }
47  }