当前位置: 首页>>代码示例>>Java>>正文


Java VariableListEvent.ALL_REPLACED属性代码示例

本文整理汇总了Java中com.cburch.logisim.analyze.model.VariableListEvent.ALL_REPLACED属性的典型用法代码示例。如果您正苦于以下问题:Java VariableListEvent.ALL_REPLACED属性的具体用法?Java VariableListEvent.ALL_REPLACED怎么用?Java VariableListEvent.ALL_REPLACED使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.cburch.logisim.analyze.model.VariableListEvent的用法示例。


在下文中一共展示了VariableListEvent.ALL_REPLACED属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: listChanged

@Override
public void listChanged(VariableListEvent event) {
	String[] oldCopy = listCopy;
	updateCopy();
	int index;
	switch (event.getType()) {
	case VariableListEvent.ALL_REPLACED:
		fireContentsChanged(this, 0, oldCopy.length);
		return;
	case VariableListEvent.ADD:
		index = list.indexOf(event.getVariable());
		fireIntervalAdded(this, index, index);
		return;
	case VariableListEvent.REMOVE:
		index = ((Integer) event.getData()).intValue();
		fireIntervalRemoved(this, index, index);
		return;
	case VariableListEvent.MOVE:
		fireContentsChanged(this, 0, getSize());
		return;
	case VariableListEvent.REPLACE:
		index = ((Integer) event.getData()).intValue();
		fireContentsChanged(this, index, index);
		return;
	}
}
 
开发者ID:LogisimIt,项目名称:Logisim,代码行数:26,代码来源:VariableTab.java

示例2: listChanged

public void listChanged(VariableListEvent event) {
	String[] oldCopy = listCopy;
	updateCopy();
	int index;
	switch (event.getType()) {
	case VariableListEvent.ALL_REPLACED:
		fireContentsChanged(this, 0, oldCopy.length);
		return;
	case VariableListEvent.ADD:
		index = list.indexOf(event.getVariable());
		fireIntervalAdded(this, index, index);
		return;
	case VariableListEvent.REMOVE:
		index = ((Integer) event.getData()).intValue();
		fireIntervalRemoved(this, index, index);
		return;
	case VariableListEvent.MOVE:
		fireContentsChanged(this, 0, getSize());
		return;
	case VariableListEvent.REPLACE:
		index = ((Integer) event.getData()).intValue();
		fireContentsChanged(this, index, index);
		return;
	}
}
 
开发者ID:reds-heig,项目名称:logisim-evolution,代码行数:25,代码来源:VariableTab.java

示例3: listChanged

@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;
	}
}
 
开发者ID:LogisimIt,项目名称:Logisim,代码行数:55,代码来源:OutputSelector.java

示例4: listChanged

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;
	}
}
 
开发者ID:reds-heig,项目名称:logisim-evolution,代码行数:55,代码来源:OutputSelector.java

示例5: listChanged

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;
	}
}
 
开发者ID:franciscaconcha,项目名称:ProyectoLogisim,代码行数:52,代码来源:OutputSelector.java


注:本文中的com.cburch.logisim.analyze.model.VariableListEvent.ALL_REPLACED属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。