本文整理汇总了Java中com.cburch.logisim.analyze.model.VariableListEvent.getVariable方法的典型用法代码示例。如果您正苦于以下问题:Java VariableListEvent.getVariable方法的具体用法?Java VariableListEvent.getVariable怎么用?Java VariableListEvent.getVariable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.cburch.logisim.analyze.model.VariableListEvent
的用法示例。
在下文中一共展示了VariableListEvent.getVariable方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: listChanged
import com.cburch.logisim.analyze.model.VariableListEvent; //导入方法依赖的package包/类
@Override
public void listChanged(VariableListEvent event) {
int index;
String variable;
Object selection;
switch (event.getType()) {
case VariableListEvent.ALL_REPLACED:
computePrototypeValue();
fireContentsChanged(this, 0, getSize());
if (source.isEmpty()) {
select.setSelectedItem(null);
} else {
select.setSelectedItem(source.get(0));
}
break;
case VariableListEvent.ADD:
variable = event.getVariable();
if (prototypeValue == null || variable.length() > prototypeValue.length()) {
computePrototypeValue();
}
index = source.indexOf(variable);
fireIntervalAdded(this, index, index);
if (select.getSelectedItem() == null) {
select.setSelectedItem(variable);
}
break;
case VariableListEvent.REMOVE:
variable = event.getVariable();
if (variable.equals(prototypeValue))
computePrototypeValue();
index = ((Integer) event.getData()).intValue();
fireIntervalRemoved(this, index, index);
selection = select.getSelectedItem();
if (selection != null && selection.equals(variable)) {
selection = source.isEmpty() ? null : source.get(0);
select.setSelectedItem(selection);
}
break;
case VariableListEvent.MOVE:
fireContentsChanged(this, 0, getSize());
break;
case VariableListEvent.REPLACE:
variable = event.getVariable();
if (variable.equals(prototypeValue))
computePrototypeValue();
index = ((Integer) event.getData()).intValue();
fireContentsChanged(this, index, index);
selection = select.getSelectedItem();
if (selection != null && selection.equals(variable)) {
select.setSelectedItem(event.getSource().get(index));
}
break;
}
}
示例2: listChanged
import com.cburch.logisim.analyze.model.VariableListEvent; //导入方法依赖的package包/类
public void listChanged(VariableListEvent event) {
int index;
String variable;
Object selection;
switch (event.getType()) {
case VariableListEvent.ALL_REPLACED:
computePrototypeValue();
fireContentsChanged(this, 0, getSize());
if (source.isEmpty()) {
select.setSelectedItem(null);
} else {
select.setSelectedItem(source.get(0));
}
break;
case VariableListEvent.ADD:
variable = event.getVariable();
if (prototypeValue == null
|| variable.length() > prototypeValue.length()) {
computePrototypeValue();
}
index = source.indexOf(variable);
fireIntervalAdded(this, index, index);
if (select.getSelectedItem() == null) {
select.setSelectedItem(variable);
}
break;
case VariableListEvent.REMOVE:
variable = event.getVariable();
if (variable.equals(prototypeValue))
computePrototypeValue();
index = ((Integer) event.getData()).intValue();
fireIntervalRemoved(this, index, index);
selection = select.getSelectedItem();
if (selection != null && selection.equals(variable)) {
selection = source.isEmpty() ? null : source.get(0);
select.setSelectedItem(selection);
}
break;
case VariableListEvent.MOVE:
fireContentsChanged(this, 0, getSize());
break;
case VariableListEvent.REPLACE:
variable = event.getVariable();
if (variable.equals(prototypeValue))
computePrototypeValue();
index = ((Integer) event.getData()).intValue();
fireContentsChanged(this, index, index);
selection = select.getSelectedItem();
if (selection != null && selection.equals(variable)) {
select.setSelectedItem(event.getSource().get(index));
}
break;
}
}
示例3: listChanged
import com.cburch.logisim.analyze.model.VariableListEvent; //导入方法依赖的package包/类
public void listChanged(VariableListEvent event) {
int index;
String variable;
Object selection;
switch (event.getType()) {
case VariableListEvent.ALL_REPLACED:
computePrototypeValue();
fireContentsChanged(this, 0, getSize());
if (source.isEmpty()) {
select.setSelectedItem(null);
} else {
select.setSelectedItem(source.get(0));
}
break;
case VariableListEvent.ADD:
variable = event.getVariable();
if (prototypeValue == null || variable.length() > prototypeValue.length()) {
computePrototypeValue();
}
index = source.indexOf(variable);
fireIntervalAdded(this, index, index);
if (select.getSelectedItem() == null) {
select.setSelectedItem(variable);
}
break;
case VariableListEvent.REMOVE:
variable = event.getVariable();
if (variable.equals(prototypeValue)) computePrototypeValue();
index = ((Integer) event.getData()).intValue();
fireIntervalRemoved(this, index, index);
selection = select.getSelectedItem();
if (selection != null && selection.equals(variable)) {
selection = source.isEmpty() ? null : source.get(0);
select.setSelectedItem(selection);
}
break;
case VariableListEvent.MOVE:
fireContentsChanged(this, 0, getSize());
break;
case VariableListEvent.REPLACE:
variable = event.getVariable();
if (variable.equals(prototypeValue)) computePrototypeValue();
index = ((Integer) event.getData()).intValue();
fireContentsChanged(this, index, index);
selection = select.getSelectedItem();
if (selection != null && selection.equals(variable)) {
select.setSelectedItem(event.getSource().get(index));
}
break;
}
}