01: /*
02: * @(#) ConverterContextSupport.java
03: *
04: * Copyright 2002 - 2003 JIDE Software. All rights reserved.
05: */
06: package com.jidesoft.converter;
07:
08: /**
09: * The interface indicates the class who extends it can support ConverterContext.
10: *
11: * @see ConverterContext
12: */
13: public interface ConverterContextSupport {
14:
15: /**
16: * Sets the converter context.
17: *
18: * @param context converter context
19: */
20: void setConverterContext(ConverterContext context);
21:
22: /**
23: * Gets the converter context.
24: *
25: * @return converter context
26: */
27: ConverterContext getConverterContext();
28:
29: /**
30: * Gets the class of the value.
31: *
32: * @return the class of the value.
33: */
34: Class<?> getType();
35:
36: /**
37: * Sets the class of the value.
38: *
39: * @param clazz
40: */
41: void setType(Class<?> clazz);
42:
43: }
|