コード例 #1
0
 public int addCluster(String iClusterName, CLUSTER_TYPE iType) {
   checkOpeness();
   return underlying.addCluster(iType.toString(), iClusterName, null, null);
 }
コード例 #2
0
 public int addCluster(
     final String iClusterName, final CLUSTER_TYPE iType, final Object... iParameters) {
   checkOpeness();
   return underlying.addCluster(iType.toString(), iClusterName, null, null, iParameters);
 }