1 16 package org.apache.cocoon.portal.factory.impl; 17 18 import org.apache.cocoon.portal.aspect.impl.AbstractAspectalizableDescription; 19 import org.apache.cocoon.portal.factory.ProducibleDescription; 20 21 28 public abstract class AbstractProducibleDescription 29 extends AbstractAspectalizableDescription 30 implements ProducibleDescription { 31 32 protected String className; 33 34 protected String name; 35 36 protected boolean createId = true; 37 38 41 public String getClassName() { 42 return className; 43 } 44 45 48 public String getName() { 49 return name; 50 } 51 52 55 public void setClassName(String string) { 56 className = string; 57 } 58 59 62 public void setName(String string) { 63 name = string; 64 } 65 66 69 public boolean createId() { 70 return this.createId; 71 } 72 73 public void setCreateId(boolean value) { 74 this.createId = value; 75 } 76 } 77 | Popular Tags |