1 package org.catacomb.dataview.read; 2 3 4 5 6 public abstract class BaseContentReader implements ContentReader { 7 8 9 FUImportContext importContext; 10 11 12 public BaseContentReader(FUImportContext ctxt) { 13 importContext = ctxt; 14 } 15 16 public abstract Object getMain(); 17 18 19 public FUImportContext getContext() { 20 return importContext; 21 } 22 23 24 25 }