author | prr |
Wed, 18 Jun 2014 13:14:15 -0700 | |
changeset 25144 | e2bf17cee34b |
parent 25128 | 2dfdfa369071 |
parent 24969 | afa6934dd8e8 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
2 |
* Copyright (c) 1999, 2014, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
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 |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package javax.sound.sampled; |
|
27 |
||
28 |
/** |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
29 |
* A {@code CompoundControl}, such as a graphic equalizer, provides control over |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
30 |
* two or more related properties, each of which is itself represented as a |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
31 |
* {@code Control}. |
2 | 32 |
* |
33 |
* @author Kara Kytle |
|
34 |
* @since 1.3 |
|
35 |
*/ |
|
36 |
public abstract class CompoundControl extends Control { |
|
37 |
||
38 |
/** |
|
39 |
* The set of member controls. |
|
40 |
*/ |
|
41 |
private Control[] controls; |
|
42 |
||
43 |
/** |
|
44 |
* Constructs a new compound control object with the given parameters. |
|
45 |
* |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
46 |
* @param type the type of control represented this compound control object |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
47 |
* @param memberControls the set of member controls |
2 | 48 |
*/ |
49 |
protected CompoundControl(Type type, Control[] memberControls) { |
|
50 |
super(type); |
|
51 |
this.controls = memberControls; |
|
52 |
} |
|
53 |
||
54 |
/** |
|
55 |
* Returns the set of member controls that comprise the compound control. |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
56 |
* |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
57 |
* @return the set of member controls |
2 | 58 |
*/ |
59 |
public Control[] getMemberControls() { |
|
60 |
Control[] localArray = new Control[controls.length]; |
|
61 |
||
62 |
for (int i = 0; i < controls.length; i++) { |
|
63 |
localArray[i] = controls[i]; |
|
64 |
} |
|
65 |
||
66 |
return localArray; |
|
67 |
} |
|
68 |
||
69 |
/** |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
70 |
* Provides a string representation of the control. |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
71 |
* |
2 | 72 |
* @return a string description |
73 |
*/ |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
74 |
@Override |
2 | 75 |
public String toString() { |
76 |
||
24969
afa6934dd8e8
8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents:
5506
diff
changeset
|
77 |
StringBuilder sb = new StringBuilder(); |
2 | 78 |
for (int i = 0; i < controls.length; i++) { |
79 |
if (i != 0) { |
|
24969
afa6934dd8e8
8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents:
5506
diff
changeset
|
80 |
sb.append(", "); |
2 | 81 |
if ((i + 1) == controls.length) { |
24969
afa6934dd8e8
8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents:
5506
diff
changeset
|
82 |
sb.append("and "); |
2 | 83 |
} |
84 |
} |
|
24969
afa6934dd8e8
8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents:
5506
diff
changeset
|
85 |
sb.append(controls[i].getType()); |
2 | 86 |
} |
87 |
||
24969
afa6934dd8e8
8041679: Replace uses of StringBuffer with StringBuilder within core library classes
psandoz
parents:
5506
diff
changeset
|
88 |
return new String(getType() + " Control containing " + sb + " Controls."); |
2 | 89 |
} |
90 |
||
91 |
/** |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
92 |
* An instance of the {@code CompoundControl.Type} inner class identifies |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
93 |
* one kind of compound control. Static instances are provided for the |
2 | 94 |
* common types. |
95 |
* |
|
96 |
* @author Kara Kytle |
|
97 |
* @since 1.3 |
|
98 |
*/ |
|
99 |
public static class Type extends Control.Type { |
|
100 |
||
101 |
/** |
|
102 |
* Constructs a new compound control type. |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
103 |
* |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
104 |
* @param name the name of the new compound control type |
2 | 105 |
*/ |
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
106 |
protected Type(final String name) { |
2 | 107 |
super(name); |
108 |
} |
|
25128
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
109 |
} |
2dfdfa369071
8043979: Javadoc cleanup of javax.sound.sampled package
serb
parents:
5506
diff
changeset
|
110 |
} |