mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
update to javac 1.5
This commit is contained in:
@ -176,7 +176,7 @@ public class App
|
||||
|
||||
mainFrame_.initialise(args);
|
||||
|
||||
mainFrame_.show();
|
||||
mainFrame_.setVisible(true);
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------
|
||||
|
||||
@ -172,10 +172,10 @@ public class CaseBrowserModel
|
||||
keyMap_.clear();
|
||||
|
||||
// Loop over all host nodes.
|
||||
Enumeration enum = hostMap_.keys();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = hostMap_.keys();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
String hostName = (String)enum.nextElement();
|
||||
String hostName = (String)iter.nextElement();
|
||||
|
||||
// Get host node.
|
||||
DefaultMutableTreeNode hostNode =
|
||||
@ -306,10 +306,10 @@ public class CaseBrowserModel
|
||||
// {
|
||||
//
|
||||
// // Loop over all host nodes.
|
||||
// Enumeration enum = hostMap_.keys();
|
||||
// while (enum.hasMoreElements())
|
||||
// itereration iter = hostMap_.keys();
|
||||
// while (iter.hasMoreElements())
|
||||
// {
|
||||
// String hostName = (String)enum.nextElement();
|
||||
// String hostName = (String)iter.nextElement();
|
||||
//
|
||||
// // Get host node.
|
||||
// DefaultMutableTreeNode hostNode =
|
||||
@ -862,10 +862,10 @@ public class CaseBrowserModel
|
||||
keyMap_.clear();
|
||||
|
||||
// Loop over all host nodes.
|
||||
Enumeration enum = hostMap_.keys();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = hostMap_.keys();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
String hostName = (String)enum.nextElement();
|
||||
String hostName = (String)iter.nextElement();
|
||||
|
||||
// Get host node.
|
||||
DefaultMutableTreeNode hostNode =
|
||||
|
||||
@ -1720,7 +1720,7 @@ public class CaseBrowserPanel
|
||||
null,
|
||||
context.getCaseBrowser()
|
||||
);
|
||||
processEditor.show();
|
||||
processEditor.setVisible(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1795,7 +1795,7 @@ public class CaseBrowserPanel
|
||||
dictHolder.value
|
||||
);
|
||||
compoundEditor.setTitle("OpenFOAM Dictionary");
|
||||
compoundEditor.show();
|
||||
compoundEditor.setVisible(true);
|
||||
|
||||
if (dictHolder.value.modified())
|
||||
{
|
||||
@ -2511,7 +2511,7 @@ public class CaseBrowserPanel
|
||||
}
|
||||
|
||||
// Show the dialog.
|
||||
dlg.show();
|
||||
dlg.setVisible(true);
|
||||
|
||||
if (!dlg.wasCancelled())
|
||||
{
|
||||
@ -2881,7 +2881,7 @@ public class CaseBrowserPanel
|
||||
controlDict.getDictEntry()
|
||||
);
|
||||
compoundEditor.setTitle("Clone Case");
|
||||
compoundEditor.show();
|
||||
compoundEditor.setVisible(true);
|
||||
|
||||
// Show busy cursor.
|
||||
BusyCursor busyCursor = new BusyCursor
|
||||
|
||||
@ -137,11 +137,11 @@ public class CaseManager
|
||||
int caseNo = 0;
|
||||
|
||||
// Close all cases.
|
||||
Enumeration enum = caseMap_.elements();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = caseMap_.elements();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
// Get next case.
|
||||
CasePanel casePanel = (CasePanel)enum.nextElement();
|
||||
CasePanel casePanel = (CasePanel)iter.nextElement();
|
||||
|
||||
// Give option of saving if modified
|
||||
casePanel.checkAndSave
|
||||
@ -176,11 +176,11 @@ public class CaseManager
|
||||
// );
|
||||
//caseNo = 0;
|
||||
//// Close all cases.
|
||||
//enum = casePostMap_.elements();
|
||||
//while (enum.hasMoreElements())
|
||||
//iter = casePostMap_.elements();
|
||||
//while (iter.hasMoreElements())
|
||||
//{
|
||||
// // Get next case.
|
||||
// CasePostPanel casePostPanel = (CasePostPanel)enum.nextElement();
|
||||
// CasePostPanel casePostPanel = (CasePostPanel)iter.nextElement();
|
||||
//
|
||||
// // Do exactly if 'close case' on casePostPanel was pressed
|
||||
// casePostClosed
|
||||
|
||||
@ -1295,7 +1295,7 @@ public class CasePanel
|
||||
"controlDict",
|
||||
null
|
||||
);
|
||||
runPanel.show();
|
||||
runPanel.setVisible(true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -314,12 +314,12 @@ public class BoundaryDefinitionModelItem
|
||||
patchPhysicalTypeDesc_.patchType(patchType_);
|
||||
|
||||
// Set the patch field types.
|
||||
Enumeration enum = patchFieldTypeMap_.keys();
|
||||
Enumeration iter = patchFieldTypeMap_.keys();
|
||||
StringPair[] patchFieldTypes = new StringPair[patchFieldTypeMap_.size()];
|
||||
int nField = 0;
|
||||
while (enum.hasMoreElements())
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
String fieldName = (String)enum.nextElement();
|
||||
String fieldName = (String)iter.nextElement();
|
||||
String patchFieldType = (String)patchFieldTypeMap_.get(fieldName);
|
||||
patchFieldTypes[nField++] = new StringPair(fieldName, patchFieldType);
|
||||
}
|
||||
|
||||
@ -101,7 +101,7 @@ public class CaseNameCache
|
||||
App.getRootFrame(),
|
||||
CaseBrowserPanel.SELECT_CASE_MODE
|
||||
);
|
||||
caseChooser.show();
|
||||
caseChooser.setVisible(true);
|
||||
|
||||
if
|
||||
(
|
||||
|
||||
@ -174,7 +174,7 @@ public class CompoundCache
|
||||
);
|
||||
editor.setTitle(displayName_);
|
||||
|
||||
editor.show();
|
||||
editor.setVisible(true);
|
||||
// Update the cached display string.
|
||||
displayValue_ = getCompoundDisplayString(3);
|
||||
// Signal that editing has stopped.
|
||||
|
||||
@ -122,8 +122,7 @@ public class DictionaryCache
|
||||
dictEntry_
|
||||
);
|
||||
editor.setTitle(displayName_);
|
||||
|
||||
editor.show();
|
||||
editor.setVisible(true);
|
||||
// Update the cached display string.
|
||||
displayValue_ = getCompoundDisplayString(3);
|
||||
// Signal that editing has stopped.
|
||||
|
||||
@ -139,7 +139,7 @@ public class DimensionSetCache
|
||||
|
||||
editor.setTitle(displayName_);
|
||||
|
||||
editor.show();
|
||||
editor.setVisible(true);
|
||||
// Update value in case it has been updated.
|
||||
getEntryValue();
|
||||
// Signal that editing has stopped.
|
||||
|
||||
@ -135,7 +135,7 @@ public class FixedListCache
|
||||
typeDescriptor_
|
||||
);
|
||||
editor.setTitle(displayName_);
|
||||
editor.show();
|
||||
editor.setVisible(true);
|
||||
// Update the cached display string.
|
||||
displayValue_ = getCompoundDisplayString(3);
|
||||
// Signal that editing has stopped.
|
||||
|
||||
@ -124,7 +124,7 @@ public class HostNameCache
|
||||
// Pop up host chooser panel
|
||||
HostChooserDlg hostChooser =
|
||||
new HostChooserDlg(App.getRootFrame());
|
||||
hostChooser.show();
|
||||
hostChooser.setVisible(true);
|
||||
|
||||
if (hostChooser.getHostName() != null)
|
||||
{
|
||||
|
||||
@ -189,7 +189,7 @@ public class ListCache
|
||||
);
|
||||
editor.setTitle(displayName_);
|
||||
|
||||
editor.show();
|
||||
editor.setVisible(true);
|
||||
// Signal that editing has stopped.
|
||||
editor_.stopCellEditing();
|
||||
}
|
||||
|
||||
@ -187,7 +187,7 @@ public class RootAndCaseCache
|
||||
App.getRootFrame(),
|
||||
CaseBrowserPanel.SELECT_CASE_MODE
|
||||
);
|
||||
caseChooser.show();
|
||||
caseChooser.setVisible(true);
|
||||
|
||||
if
|
||||
(
|
||||
|
||||
@ -129,7 +129,7 @@ public class RootDirCache
|
||||
App.getRootFrame(),
|
||||
CaseBrowserPanel.SELECT_ROOT_MODE
|
||||
);
|
||||
caseChooser.show();
|
||||
caseChooser.setVisible(true);
|
||||
|
||||
if
|
||||
(
|
||||
|
||||
@ -127,7 +127,7 @@ public class SelectionCache
|
||||
);
|
||||
editor.setTitle(displayName_);
|
||||
|
||||
editor.show();
|
||||
editor.setVisible(true);
|
||||
// Update the cached display string.
|
||||
displayValue_ = getSelectionDisplayString();
|
||||
// Signal that editing has stopped.
|
||||
|
||||
@ -1783,7 +1783,7 @@ public class CaseEditorModule
|
||||
CaseBrowserPanel.SELECT_CASE_MODE
|
||||
);
|
||||
|
||||
caseChooser.show();
|
||||
caseChooser.setVisible(true);
|
||||
|
||||
if
|
||||
(
|
||||
|
||||
@ -193,11 +193,11 @@ public class PatchEditorModel
|
||||
}
|
||||
|
||||
// Now that the map is initialised, build the tree.
|
||||
Enumeration enum = boundaryDefMap_.elements();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = boundaryDefMap_.elements();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
DefaultMutableTreeNode node =
|
||||
(DefaultMutableTreeNode)enum.nextElement();
|
||||
(DefaultMutableTreeNode)iter.nextElement();
|
||||
BoundaryDefinitionModelItem nodeInfo =
|
||||
(BoundaryDefinitionModelItem)node.getUserObject();
|
||||
|
||||
|
||||
@ -211,7 +211,7 @@ public class PatchEditorWindow
|
||||
|
||||
// Initialise and show the boundary type selector dialog.
|
||||
PatchPhysicalTypeSelectorDlg dlg = new PatchPhysicalTypeSelectorDlg(null, patchModel_);
|
||||
dlg.show();
|
||||
dlg.setVisible(true);
|
||||
|
||||
// If the dialog wasn't cancelled, update the boundary type name.
|
||||
if (!dlg.wasCancelled())
|
||||
|
||||
@ -327,7 +327,7 @@ public class ProcessEditor extends javax.swing.JDialog
|
||||
labels, values
|
||||
);
|
||||
|
||||
dlg.show();
|
||||
dlg.setVisible(true);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -343,7 +343,7 @@ public class InvokeUtilityAction
|
||||
desc.name + "Dict",
|
||||
controlDict
|
||||
);
|
||||
runPanel.show();
|
||||
runPanel.setVisible(true);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
||||
@ -62,10 +62,10 @@ public class CollapseTreeAction
|
||||
TreeModel model = tree_.getModel();
|
||||
|
||||
DefaultMutableTreeNode root = (DefaultMutableTreeNode)model.getRoot();
|
||||
Enumeration enum = root.depthFirstEnumeration();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = root.depthFirstEnumeration();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
DefaultMutableTreeNode node = (DefaultMutableTreeNode)enum.nextElement();
|
||||
DefaultMutableTreeNode node = (DefaultMutableTreeNode)iter.nextElement();
|
||||
TreePath tp = new TreePath(node.getPath());
|
||||
tree_.collapsePath(tp);
|
||||
}
|
||||
|
||||
@ -62,10 +62,10 @@ public class ExpandTreeAction
|
||||
TreeModel model = tree_.getModel();
|
||||
|
||||
DefaultMutableTreeNode root = (DefaultMutableTreeNode)model.getRoot();
|
||||
Enumeration enum = root.depthFirstEnumeration();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = root.depthFirstEnumeration();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
DefaultMutableTreeNode node = (DefaultMutableTreeNode)enum.nextElement();
|
||||
DefaultMutableTreeNode node = (DefaultMutableTreeNode)iter.nextElement();
|
||||
TreePath tp = new TreePath(node.getPath());
|
||||
tree_.expandPath(tp);
|
||||
}
|
||||
|
||||
@ -179,7 +179,7 @@ public class FileEditor
|
||||
simpleEditor_.openFile(workFile_);
|
||||
}
|
||||
|
||||
simpleEditor_.show();
|
||||
simpleEditor_.setVisible(true);
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -168,7 +168,7 @@ public class RunPanel
|
||||
}
|
||||
|
||||
|
||||
show();
|
||||
setVisible(true);
|
||||
}
|
||||
catch(FoamXError fxErr)
|
||||
{
|
||||
@ -607,7 +607,7 @@ public class RunPanel
|
||||
// Pop up host chooser panel
|
||||
HostChooserDlg hostChooser =
|
||||
new HostChooserDlg(parent_);
|
||||
hostChooser.show();
|
||||
hostChooser.setVisible(true);
|
||||
|
||||
if (hostChooser.getHostName() != null)
|
||||
{
|
||||
@ -680,7 +680,7 @@ public class RunPanel
|
||||
JDialog dialog = pane.createDialog(this, "FoamX...");
|
||||
dialog.setModal(false);
|
||||
dialog.pack();
|
||||
dialog.show();
|
||||
dialog.setVisible(true);
|
||||
|
||||
// Install new file change listener
|
||||
StringHolder holder = new StringHolder();
|
||||
@ -755,7 +755,7 @@ public class RunPanel
|
||||
parent_,
|
||||
argumentsEntry.getDictEntry()
|
||||
);
|
||||
compoundEditor.show();
|
||||
compoundEditor.setVisible(true);
|
||||
|
||||
// Update displayed value
|
||||
setArgsField(false, argumentsEntry);
|
||||
@ -791,7 +791,7 @@ public class RunPanel
|
||||
controlDict_.getDictEntry()
|
||||
);
|
||||
|
||||
compoundEditor.show();
|
||||
compoundEditor.setVisible(true);
|
||||
|
||||
DictionaryEntryCache argumentsEntry =
|
||||
controlDict_.getSubEntry("arguments");
|
||||
|
||||
@ -700,6 +700,6 @@ public class SimpleEditor extends JFrame implements FileListener
|
||||
|
||||
frame.openFile(file);
|
||||
|
||||
frame.show();
|
||||
frame.setVisible(true);
|
||||
}
|
||||
}
|
||||
|
||||
@ -335,10 +335,10 @@ public class WindowManager
|
||||
{
|
||||
int x = 0;
|
||||
|
||||
Enumeration enum = windowMap_.elements();
|
||||
while (enum.hasMoreElements())
|
||||
Enumeration iter = windowMap_.elements();
|
||||
while (iter.hasMoreElements())
|
||||
{
|
||||
FoamXInternalFrame frame = (FoamXInternalFrame)enum.nextElement();
|
||||
FoamXInternalFrame frame = (FoamXInternalFrame)iter.nextElement();
|
||||
|
||||
frame.setBounds(x, x, defaultFrameWidth_, defaultFrameHeight_);
|
||||
x += 20;
|
||||
|
||||
66
bin/FoamX
66
bin/FoamX
@ -30,8 +30,6 @@
|
||||
# Loader for FoamX Java Client.
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
# Set default JDK path.
|
||||
jdkhome="/usr/java/jdk1.4"
|
||||
|
||||
Script=${0##*/}
|
||||
|
||||
@ -76,18 +74,19 @@ cleanup() {
|
||||
}
|
||||
|
||||
|
||||
# isValid jobControlFile
|
||||
isValid() {
|
||||
grep 'startDate' $1 > /dev/null && \
|
||||
grep 'startTime' $1 > /dev/null && \
|
||||
grep 'userName' $1 > /dev/null && \
|
||||
grep 'foamVersion' $1 > /dev/null && \
|
||||
grep 'code' $1 > /dev/null && \
|
||||
grep 'currentDir' $1 > /dev/null && \
|
||||
grep 'argList' $1 > /dev/null
|
||||
## isValid jobControlFile
|
||||
#isValid() {
|
||||
# grep 'startDate' $1 > /dev/null && \
|
||||
# grep 'startTime' $1 > /dev/null && \
|
||||
# grep 'userName' $1 > /dev/null && \
|
||||
# grep 'foamVersion' $1 > /dev/null && \
|
||||
# grep 'code' $1 > /dev/null && \
|
||||
# grep 'currentDir' $1 > /dev/null && \
|
||||
# grep 'argList' $1 > /dev/null
|
||||
#
|
||||
# return $?
|
||||
#}
|
||||
|
||||
return $?
|
||||
}
|
||||
|
||||
#-------------------------
|
||||
#
|
||||
@ -95,33 +94,12 @@ isValid() {
|
||||
#
|
||||
#-------------------------
|
||||
|
||||
# If JAVA_PATH or JAVA_HOME are set, it overrides the default.
|
||||
if [ -n "$JAVA_PATH" ]; then
|
||||
jdkhome=$JAVA_PATH
|
||||
elif [ -n "$JAVA_HOME" ]; then
|
||||
jdkhome=$JAVA_HOME
|
||||
fi
|
||||
|
||||
# check that the JDK exists.
|
||||
if [ -z "$jdkhome" ] ; then
|
||||
echo "Java path not set. Please set JAVA_PATH to the JDK installation"
|
||||
echo "directory."
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -x "$jdkhome/bin/java" ] ; then
|
||||
echo "Cannot find JDK at $jdkhome. Please set JAVA_PATH to the"
|
||||
echo "JDK installation directory."
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$FOAM_JOB_DIR" ]; then
|
||||
echo "FOAM_JOB_DIR environment variable not set. This should point to the"
|
||||
echo "Foam jobControl directory."
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
#if [ -z "$FOAM_JOB_DIR" ]; then
|
||||
# echo "FOAM_JOB_DIR environment variable not set. This should point to the"
|
||||
# echo "Foam jobControl directory."
|
||||
# echo ""
|
||||
# exit 1
|
||||
#fi
|
||||
|
||||
# Make sure that the FoamX configuration directory is available.
|
||||
if [ ! -d "$FOAMX_CONFIG" ] ; then
|
||||
@ -232,12 +210,8 @@ if [ "$XHB_PID" ]; then
|
||||
fi
|
||||
|
||||
#- For mico > 2.3.7 : force to use 1.0
|
||||
if [ `uname -s` = 'AIX' ]; then
|
||||
orbArgs=''
|
||||
else
|
||||
#orbArgs="-ORBDefaultInitRef corbaloc:iiop:1.0:$HOSTNAME:$HOSTPORT"
|
||||
orbArgs="-ORBDefaultInitRef corbaloc:iiop:1.0:$HOSTNAME:$HOSTPORT -ORBInitialPort $HOSTPORT -ORBInitialHost $HOSTNAME"
|
||||
fi
|
||||
#orbArgs="-ORBDefaultInitRef corbaloc:iiop:1.0:$HOSTNAME:$HOSTPORT"
|
||||
orbArgs="-ORBDefaultInitRef corbaloc:iiop:1.0:$HOSTNAME:$HOSTPORT -ORBInitialPort $HOSTPORT -ORBInitialHost $HOSTNAME"
|
||||
#echo "Starting Java with ORB arguments : $orbArgs"
|
||||
|
||||
# Set Language to English
|
||||
|
||||
Reference in New Issue
Block a user