1 17 package org.alfresco.repo.importer.view; 18 19 import org.alfresco.repo.importer.Importer; 20 import org.alfresco.service.cmr.dictionary.DictionaryService; 21 import org.alfresco.service.namespace.QName; 22 23 24 30 public class ElementContext 31 { 32 private DictionaryService dictionary; 34 35 private QName elementName; 37 38 private Importer importer; 40 41 42 49 public ElementContext(QName elementName, DictionaryService dictionary, Importer importer) 50 { 51 this.elementName = elementName; 52 this.dictionary = dictionary; 53 this.importer = importer; 54 } 55 56 59 public QName getElementName() 60 { 61 return elementName; 62 } 63 64 67 public DictionaryService getDictionaryService() 68 { 69 return dictionary; 70 } 71 72 75 public Importer getImporter() 76 { 77 return importer; 78 } 79 } 80 | Popular Tags |