Class IdentifierEditor
- java.lang.Object
-
- de.ipk_gatersleben.bit.bi.edal.rmi.client.gui.editor.AbstractMetaDataEditor
-
- de.ipk_gatersleben.bit.bi.edal.rmi.client.gui.editor.IdentifierEditor
-
public class IdentifierEditor extends AbstractMetaDataEditor
TheIdentifierEditorwrappers classTextDialogas aMetadataEditorDialog to editIdentifierdatatype. we can use it with a couple of lines of code:IdentifierEditor identifierEditor = new IdentifierEditor(); identifierEditor.showOpenDialog();
-
-
Constructor Summary
Constructors Constructor Description IdentifierEditor()
-
Method Summary
Modifier and Type Method Description UntypedDatagetValue()Returns the Identifier inputted by user.voidsetTitle(java.lang.String title)set the title of metadata dialogvoidsetValue(UntypedData data)set the Identifier value.intshowOpenDialog()pop up a IdentifierEditor Dialog
-
-
-
Method Detail
-
showOpenDialog
public int showOpenDialog()
pop up a IdentifierEditor Dialog- Specified by:
showOpenDialogin classAbstractMetaDataEditor- Returns:
- the result
-
setValue
public void setValue(UntypedData data)
set the Identifier value. set the Identifier value.- Specified by:
setValuein classAbstractMetaDataEditor- Parameters:
data- the value to set
-
getValue
public UntypedData getValue()
Returns the Identifier inputted by user.- Specified by:
getValuein classAbstractMetaDataEditor- Returns:
- the Identifier inputted 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
-
-