1 18 19 package org.objectweb.kilim.description; 20 21 import org.objectweb.kilim.KilimException; 22 23 27 public class NullElement extends InlinedElement { 28 37 public NullElement(String aName, int aStatus, boolean isP, boolean isT, TemplateDescription aTemplate) throws KilimException { 38 super(isP, isT, aTemplate); 39 setLocalName(aName); 40 } 41 42 45 public int getKind() { 46 return KILIM.NULL_ELEMENT; 47 } 48 49 52 public boolean providesValue() { 53 return true; 54 } 55 56 59 public boolean performsAction() { 60 return true; 61 } 62 63 66 public boolean isEventSource() { 67 return false; 68 } 69 70 73 public Object clone() { 74 return this; 75 } 76 } | Popular Tags |