use of cbit.gui.MultiPurposeTextPanel in project vcell by virtualcell.
the class BNGLDebuggerPanel method getBnglPanel.
private MultiPurposeTextPanel getBnglPanel() {
if (bnglTextArea == null) {
bnglTextArea = new MultiPurposeTextPanel(true);
bnglTextArea.setName("BnglPanel");
bnglTextArea.setKeywords(new HashSet<String>(Arrays.asList(kw)));
}
return bnglTextArea;
}
use of cbit.gui.MultiPurposeTextPanel in project vcell by virtualcell.
the class MathematicsPanel method getVCMLPanel.
private MultiPurposeTextPanel getVCMLPanel() {
if (ivjVCMLPanel == null) {
ivjVCMLPanel = new MultiPurposeTextPanel(false);
ivjVCMLPanel.setName("VCMLPanel");
ivjVCMLPanel.setKeywords(MathDescEditor.getkeywords());
}
return ivjVCMLPanel;
}
use of cbit.gui.MultiPurposeTextPanel in project vcell by virtualcell.
the class BNGOutputPanel method getBNGLInputPanel.
/**
* Return the lineNumberedTextPanel property value.
* @return cbit.gui.MultiPurposeTextPanel
*/
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private MultiPurposeTextPanel getBNGLInputPanel() {
if (ivjBNGLInputPanel == null) {
try {
ivjBNGLInputPanel = new MultiPurposeTextPanel();
ivjBNGLInputPanel.setAutoCompletionWords(getBNGAutoCompletionWords());
ivjBNGLInputPanel.setKeywords(getBNGkeywords());
// user code begin {1}
// user code end
} catch (java.lang.Throwable ivjExc) {
// user code begin {2}
// user code end
handleException(ivjExc);
}
}
return ivjBNGLInputPanel;
}
use of cbit.gui.MultiPurposeTextPanel in project vcell by virtualcell.
the class MathDescEditor method getVCMLPane.
/**
* Return the lineNumberedTextPanel1 property value.
* @return cbit.gui.MultiPurposeTextPanel
*/
private MultiPurposeTextPanel getVCMLPane() {
// the text editor
if (vcmlPane == null) {
try {
vcmlPane = new MultiPurposeTextPanel();
vcmlPane.setName("VCMLPanel");
vcmlPane.setAutoCompletionWords(getAutoCompletionWords());
vcmlPane.setKeywords(getkeywords());
} catch (java.lang.Throwable ivjExc) {
handleException(ivjExc);
}
}
return vcmlPane;
}
Aggregations