1 17 package org.alfresco.jcr.importer; 18 19 import org.alfresco.repo.importer.view.ElementContext; 20 import org.alfresco.service.namespace.QName; 21 22 27 public class ValueContext extends ElementContext 28 { 29 private PropertyContext property; 30 31 32 38 public ValueContext(QName elementName, PropertyContext property) 39 { 40 super(elementName, property.getDictionaryService(), property.getImporter()); 41 this.property = property; 42 } 43 44 49 public PropertyContext getProperty() 50 { 51 return property; 52 } 53 54 } 55 | Popular Tags |