1 16 package org.apache.cocoon.portal.event.impl; 17 18 import org.apache.cocoon.portal.event.Event; 19 import org.apache.cocoon.portal.layout.Layout; 20 21 28 public final class MaximizeEvent 29 implements Event { 30 31 private Layout layout; 32 33 public MaximizeEvent(Layout target) { 34 this.layout = target; 35 } 36 37 public Layout getLayout() { 38 return this.layout; 39 } 40 41 } 42 | Popular Tags |