1 16 17 package org.apache.jetspeed.services.forward.configuration.impl; 18 19 import org.apache.jetspeed.services.forward.configuration.Pane; 20 21 27 public class PaneImpl implements Pane, java.io.Serializable  28 { 29 30 private String name; 31 private String id; 32 33 34 public String getName() 35 { 36 return this.name; 37 } 38 39 public void setName(String name) 40 { 41 this.name = name; 42 } 43 44 public String getId() 45 { 46 return this.id; 47 } 48 49 public void setId(String id) 50 { 51 this.id = id; 52 } 53 54 } 55 56 57 58 59 | Popular Tags |