src/share/classes/com/sun/corba/se/spi/orb/OperationFactory.java

changeset 205
b2fff4b7e8cd
parent 158
91006f157c46
child 475
39d15bbb5741
equal deleted inserted replaced
198:cc67fdc4fee9 205:b2fff4b7e8cd
1 /* 1 /*
2 * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
23 * questions. 23 * questions.
24 */ 24 */
25 package com.sun.corba.se.spi.orb ; 25 package com.sun.corba.se.spi.orb ;
26 26
27 import java.util.StringTokenizer ; 27 import java.util.StringTokenizer ;
28 import java.util.Arrays ;
28 29
29 import java.lang.reflect.Array ; 30 import java.lang.reflect.Array ;
30 31
31 import java.net.URL ; 32 import java.net.URL ;
32 import java.net.MalformedURLException ; 33 import java.net.MalformedURLException ;
444 } 445 }
445 446
446 public String toString() { 447 public String toString() {
447 return "sequenceAction(separator=\"" + sep + 448 return "sequenceAction(separator=\"" + sep +
448 "\",actions=" + 449 "\",actions=" +
449 ObjectUtility.compactObjectToString(actions) + ")" ; 450 Arrays.toString(actions) + ")" ;
450 } 451 }
451 } 452 }
452 453
453 public static Operation sequenceAction( String sep, 454 public static Operation sequenceAction( String sep,
454 Operation[] actions ) 455 Operation[] actions )
531 return result ; 532 return result ;
532 } 533 }
533 534
534 public String toString() { 535 public String toString() {
535 return "mapSequenceAction(" + 536 return "mapSequenceAction(" +
536 ObjectUtility.compactObjectToString(op) + ")" ; 537 Arrays.toString(op) + ")" ;
537 } 538 }
538 } 539 }
539 540
540 public static Operation mapSequenceAction( Operation[] op ) 541 public static Operation mapSequenceAction( Operation[] op )
541 { 542 {

mercurial