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