Class SubjectsEditor
- java.lang.Object
-
- de.ipk_gatersleben.bit.bi.edal.rmi.client.gui.editor.AbstractMetaDataEditor
-
- de.ipk_gatersleben.bit.bi.edal.rmi.client.gui.editor.SubjectsEditor
-
public class SubjectsEditor extends AbstractMetaDataEditor
TheSubjectsEditorwrappers classSubjectsDialogas aMetadataEditorDialog to edit Subjects datatype. we can use it with a couple of lines of code:SubjectsEditor subjectsEditor = new SubjectsEditor(); subjectsEditor.showOpenDialog();
-
-
Constructor Summary
Constructors Constructor Description SubjectsEditor()
-
Method Summary
Modifier and Type Method Description UntypedDatagetValue()Returns the Subjects typed in by user.voidsetTitle(java.lang.String title)set the title of metadata dialogvoidsetValue(UntypedData subjects)set the Subjects value.intshowOpenDialog()pop up a SubjectsDialog Dialog
-
-
-
Method Detail
-
showOpenDialog
public int showOpenDialog()
pop up a SubjectsDialog Dialog- Specified by:
showOpenDialogin classAbstractMetaDataEditor- Returns:
- the result
-
setValue
public void setValue(UntypedData subjects)
set the Subjects value. set the Subjects value.- Specified by:
setValuein classAbstractMetaDataEditor- Parameters:
subjects- the value to set
-
getValue
public UntypedData getValue()
Returns the Subjects typed in by user.- Specified by:
getValuein classAbstractMetaDataEditor- Returns:
- the Subjects typed in by user.
-
setTitle
public void setTitle(java.lang.String title)
Description copied from class:AbstractMetaDataEditorset the title of metadata dialog- Overrides:
setTitlein classAbstractMetaDataEditor- Parameters:
title- the title of the dialog
-
-