Uses of Class
org.nuiton.jaxx.runtime.context.JAXXContextEntryDef
-
Packages that use JAXXContextEntryDef Package Description org.nuiton.jaxx.runtime org.nuiton.jaxx.runtime.context org.nuiton.jaxx.runtime.swing.wizard JAXX - Wizard framework -
-
Uses of JAXXContextEntryDef in org.nuiton.jaxx.runtime
Methods in org.nuiton.jaxx.runtime that return JAXXContextEntryDef Modifier and Type Method Description static <O> JAXXContextEntryDef<O>JAXXUtil. newContextEntryDef(Class<O> klass)static <O> JAXXContextEntryDef<O>JAXXUtil. newContextEntryDef(String name, Class<?> klass)static <O> JAXXContextEntryDef<List<O>>JAXXUtil. newListContextEntryDef()static <O> JAXXContextEntryDef<List<O>>JAXXUtil. newListContextEntryDef(String name)static <K,V>
JAXXContextEntryDef<Map<K,V>>JAXXUtil. newMapContextEntryDef(String name)Methods in org.nuiton.jaxx.runtime with parameters of type JAXXContextEntryDef Modifier and Type Method Description static voidJAXXUtil. checkJAXXContextEntries(JAXXContext context, JAXXContextEntryDef<?>... defs)Test if some entries exists in a given context and throw an IllegalArgumentException if not.static <T> TJAXXUtil. checkJAXXContextEntry(JAXXContext context, JAXXContextEntryDef<T> def)Test if a type of entry exists in a given context and throw an IllegalArgumentException if not found. -
Uses of JAXXContextEntryDef in org.nuiton.jaxx.runtime.context
Fields in org.nuiton.jaxx.runtime.context declared as JAXXContextEntryDef Modifier and Type Field Description protected static JAXXContextEntryDef<JAXXContext>DefaultJAXXContext. PARENT_CONTEXT_ENTRYentry of the parent contextFields in org.nuiton.jaxx.runtime.context with type parameters of type JAXXContextEntryDef Modifier and Type Field Description protected Map<JAXXContextEntryDef<?>,Object>DefaultJAXXContext. datales données contenues dans le contextprotected Map<JAXXContextEntryDef<?>,String>DefaultApplicationContext. entryListenedMap of entries to watch associated with the property to fires if a modification was found.Methods in org.nuiton.jaxx.runtime.context that return JAXXContextEntryDef Modifier and Type Method Description protected JAXXContextEntryDef<?>DefaultJAXXContext. getEntry(Class<?> klass, String name)protected JAXXContextEntryDef<?>DefaultJAXXContext. getKey(String name, Class<?> klass)Methods in org.nuiton.jaxx.runtime.context with parameters of type JAXXContextEntryDef Modifier and Type Method Description <O> JAXXInitialContextJAXXInitialContext. add(JAXXContextEntryDef<O> def, O value)Register a named (or not) value in the context.voidDefaultApplicationContext. addPropertyChangeListener(JAXXContextEntryDef<?> entry, String name, PropertyChangeListener listener)To add a listen modification of the given entry in the context.protected voidDefaultApplicationContext. fireEntryChanged(JAXXContextEntryDef<?> entryDef, Object oldValue, Object newValue)voidDefaultApplicationContext. removePropertyChangeListener(JAXXContextEntryDef<?> entry, String name, PropertyChangeListener listener)To remove a listen modification of the given entry in the context. -
Uses of JAXXContextEntryDef in org.nuiton.jaxx.runtime.swing.wizard
Fields in org.nuiton.jaxx.runtime.swing.wizard declared as JAXXContextEntryDef Modifier and Type Field Description static JAXXContextEntryDef<Runnable>WizardUILancher. APPLY_DEFthe jaxx context entry to store the apply actionstatic JAXXContextEntryDef<Runnable>WizardUILancher. CANCEL_DEFthe jaxx context entry to store the cancel actionMethods in org.nuiton.jaxx.runtime.swing.wizard that return JAXXContextEntryDef Modifier and Type Method Description static <M extends WizardModel<?>>
JAXXContextEntryDef<M>WizardUILancher. newModelEntry(Class<M> modelType)
-