1 53 package org.swixml.converters; 54 55 import org.jdom.Attribute; 56 import org.swixml.Converter; 57 import org.swixml.Localizer; 58 59 import javax.swing.*; 60 61 62 70 public class ActionConverter implements Converter { 71 79 public Object convert( Class type, Attribute attr, Localizer localizer ) throws Exception { 80 return null; 81 } 82 83 88 public Class convertsTo() { 89 return Action.class; 90 } 91 } 92 | Popular Tags |