1 package net.sf.msplice.model;
2
3 import net.sf.msplice.SpliceException;
4 import net.sf.msplice.visitor.IVisitor;
5
6 public class ViewProperty implements ISpliceElement {
7
8 private String name = null;
9
10 public Object accept(IVisitor visitor) throws SpliceException {
11 return visitor.visit(this);
12 }
13
14 // --------------------------------------------------------------------------------
15 // getters and setters
16 // --------------------------------------------------------------------------------
17
18 public String getName() {
19 return name;
20 }
21
22 public void setName(String name) {
23 this.name = name;
24 }
25
26 }