blob: b6128e8e53e7b7e32e1be41469e5cdd57059f329 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package javax.sound.sampled;
public abstract class Control {
public static class Type {
private String name;
public Type(String name) {
this.name = name;
}
@Override
public boolean equals(Object another) {
if (this == another) {
return true;
}
if (another == null || !(another instanceof Type)) {
return false;
}
Type obj = (Type) another;
return name == null ? obj.name == null : name.equals(obj.name);
}
@Override
public final int hashCode() {
return name == null ? 0 : name.hashCode();
}
@Override
public final String toString() {
return name;
}
}
private Type type;
protected Control(Type type) {
this.type = type;
}
public Type getType() {
return type;
}
public String toString() {
return type + " Control"; //$NON-NLS-1$
}
}