1 package org.columba.core.charset; 17 18 import java.nio.charset.Charset ; 19 import java.util.EventObject ; 20 21 24 25 @SuppressWarnings ("serial") 26 public class CharsetEvent extends EventObject { 27 protected Charset value; 28 29 32 public CharsetEvent(Object theSource, Charset charset) { 33 super(theSource); 34 value = charset; 35 } 36 37 40 public Charset getCharset() { 41 return value; 42 } 43 } 44 | Popular Tags |