Removed some debug
Added default values to submit form
This commit is contained in:
parent
882f503b03
commit
e21f079d36
2 changed files with 4 additions and 2 deletions
|
|
@ -615,8 +615,6 @@ public class SBOL2SBML {
|
|||
public static boolean isIOMapping(MapsTo mapping, Module subModule, SBOLDocument sbolDoc) {
|
||||
ModuleDefinition subModuleDef = sbolDoc.getModuleDefinition(subModule.getDefinitionURI());
|
||||
FunctionalComponent remoteComp = subModuleDef.getFunctionalComponent(mapping.getRemoteURI());
|
||||
System.out.println("subModule:"+subModule.getDefinitionURI());
|
||||
System.out.println("mapping:"+mapping.getRemoteURI());
|
||||
return isInputComponent(remoteComp) || isOutputComponent(remoteComp);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -726,9 +726,13 @@ public class ModelEditor extends JPanel implements ActionListener, MouseListener
|
|||
JTextField userField = new JTextField(12);
|
||||
JPasswordField passwordField = new JPasswordField(12);
|
||||
JTextField idField = new JTextField(12);
|
||||
idField.setText(biomodel.getSBMLDocument().getModel().getId());
|
||||
JTextField versionField = new JTextField(12);
|
||||
versionField.setText("1");
|
||||
JTextField nameField = new JTextField(12);
|
||||
nameField.setText(biomodel.getSBMLDocument().getModel().getName());
|
||||
JTextField descriptionField = new JTextField(12);
|
||||
descriptionField.setText(biomodel.getSBMLDocument().getModel().getName());
|
||||
JTextField citationField = new JTextField(12);
|
||||
JTextField keywordField = new JTextField(12);
|
||||
JComboBox ifExisting = new JComboBox();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue