本文整理匯總了Java中com.cburch.logisim.data.Attribute.equals方法的典型用法代碼示例。如果您正苦於以下問題:Java Attribute.equals方法的具體用法?Java Attribute.equals怎麽用?Java Attribute.equals使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.cburch.logisim.data.Attribute
的用法示例。
在下文中一共展示了Attribute.equals方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getName
import com.cburch.logisim.data.Attribute; //導入方法依賴的package包/類
@Override
public String getName() {
Attribute<?> a = attr;
if (a == null) {
boolean found = false;
for (AttributeMapKey key : newValues.keySet()) {
Attribute<?> at = key.getAttribute();
if (found) {
if (a == null ? at != null : !a.equals(at)) {
a = null;
break;
}
} else {
found = true;
a = at;
}
}
attr = a;
}
if (a == null) {
return Strings.get("actionChangeAttributes");
} else {
return Strings.get("actionChangeAttribute", a.getDisplayName());
}
}
示例2: findIndex
import com.cburch.logisim.data.Attribute; //導入方法依賴的package包/類
private int findIndex(Attribute<?> attr) {
if (attr == null)
return -1;
Attribute<?>[] as = attrs;
for (int i = 0; i < as.length; i++) {
if (attr.equals(as[i]))
return i;
}
return -1;
}