Package com.comsol.model
Interface MethodCallFeature
-
- All Superinterfaces:
ModelEntity
,PrimitiveModelEntity
,PropFeature
,SelectionContainer
,SelectionEntity
public interface MethodCallFeature extends PropFeature
Method call feature.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
inputNames()
Get input parameter names of the method.void
loadFile(java.lang.String filename)
Loads a file with method inputs.java.lang.String
methodName()
Returns the method name of the called method.void
run()
Performs a run operation on this method call feature.-
Methods inherited from interface com.comsol.model.ModelEntity
active, author, author, comments, comments, dateCreated, dateModified, docMarker, docMarker, help, help, icon, isactive, isActive, label, label, lastModifiedBy, model, model, name, name, resetAuthor, scope, tag, tag, timeCreated, timeModified, version, version
-
Methods inherited from interface com.comsol.model.PrimitiveModelEntity
getContainer, getDisplayString, resolveModelPath
-
Methods inherited from interface com.comsol.model.PropFeature
getAllowedPropertyValues, getBoolean, getBoolean, getBoolean, getBooleanArray, getBooleanMatrix, getDouble, getDouble, getDouble, getDoubleArray, getDoubleMatrix, getEntryKeyIndex, getEntryKeys, getInt, getInt, getInt, getIntArray, getIntMatrix, getReferenceArray, getString, getString, getString, getString, getStringArray, getStringMatrix, getType, getValueType, hasProperty, hasSelection, move, move, properties, remove, remove, selection, set, set, set, set, set, set, set, set, set, set, set, set, setEntry, setEntry, setEntry, setEntry, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex
-
Methods inherited from interface com.comsol.model.SelectionEntity
selection
-
-
-
-
Method Detail
-
inputNames
java.lang.String[] inputNames()
Get input parameter names of the method.- Returns:
- Input parameter names of the method.
-
loadFile
void loadFile(java.lang.String filename)
Loads a file with method inputs. Each line in the file should have the format <name>=<value>. Arrays and 2D arrays are entered using curly braces, e.g., {1,2,3}.- Parameters:
filename
- The file to load.
-
methodName
java.lang.String methodName()
Returns the method name of the called method.- Returns:
- The name of the method called.
-
run
void run()
Performs a run operation on this method call feature.
-
-