1 26 27 package org.objectweb.util.browser.core.common; 28 29 30 31 32 33 34 import org.objectweb.util.browser.core.api.AssociatedElement; 35 import org.objectweb.util.browser.core.api.PropertyContainer; 36 37 43 44 public abstract class AssociatedElementImpl implements AssociatedElement { 45 46 47 48 protected PropertyContainer context_ = null; 49 50 55 public void setPropertyContext(PropertyContainer configuration) { 56 context_ = configuration; 57 } 58 59 62 public void clear(){ 63 context_.clear(); 64 } 65 } 66 | Popular Tags |