1 16 package org.apache.cocoon.forms.formmodel; 17 18 import org.apache.cocoon.forms.formmodel.library.Library; 19 20 25 public class WidgetDefinitionBuilderContext { 26 27 protected WidgetDefinition superDefinition = null; 28 protected Library localLibrary = null; 29 30 public WidgetDefinitionBuilderContext() { 31 this.superDefinition = null; 32 this.localLibrary = null; 33 } 34 35 public WidgetDefinitionBuilderContext(WidgetDefinitionBuilderContext other) { 36 this.superDefinition = other.superDefinition; 37 this.localLibrary = other.localLibrary; 38 } 39 40 public WidgetDefinition getSuperDefinition() { 41 return superDefinition; 42 } 43 public void setSuperDefinition(WidgetDefinition def) { 44 superDefinition = def; 45 } 46 47 public Library getLocalLibrary() { 48 return localLibrary; 49 } 50 public void setLocalLibrary(Library lib) { 51 localLibrary = lib; 52 } 53 54 } 55 | Popular Tags |