1 16 package org.apache.cocoon.portal.layout.impl; 17 18 import org.apache.cocoon.portal.layout.AbstractLayout; 19 20 30 public class FrameLayout extends AbstractLayout { 31 32 private String source; 33 34 37 public String getSource() { 38 return source; 39 } 40 41 45 public void setSource(String source) { 46 this.source = source; 47 } 48 49 52 protected Object clone() throws CloneNotSupportedException { 53 FrameLayout clone = (FrameLayout)super.clone(); 54 55 clone.source = this.source; 56 57 return clone; 58 } 59 60 } 61 | Popular Tags |