1 16 17 18 package org.apache.commons.betwixt.strategy; 19 20 import org.apache.commons.betwixt.io.read.MappingAction; 21 import org.apache.commons.betwixt.io.read.ReadContext; 22 import org.xml.sax.Attributes ; 23 24 38 public abstract class ActionMappingStrategy { 39 40 44 public static final ActionMappingStrategy DEFAULT 45 = new DefaultActionMappingStrategy(); 46 47 56 public abstract MappingAction getMappingAction( 57 String namespace, 58 String name, 59 Attributes attributes, 60 ReadContext context) 61 throws Exception ; 62 } 63 | Popular Tags |