本文整理匯總了Java中com.cburch.logisim.tools.key.KeyConfigurationResult類的典型用法代碼示例。如果您正苦於以下問題:Java KeyConfigurationResult類的具體用法?Java KeyConfigurationResult怎麽用?Java KeyConfigurationResult使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
KeyConfigurationResult類屬於com.cburch.logisim.tools.key包,在下文中一共展示了KeyConfigurationResult類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: create
import com.cburch.logisim.tools.key.KeyConfigurationResult; //導入依賴的package包/類
public static Action create(Tool tool, Attribute<?> attr, Object value) {
AttributeSet attrs = tool.getAttributeSet();
KeyConfigurationEvent e = new KeyConfigurationEvent(0, attrs, null,
null);
KeyConfigurationResult r = new KeyConfigurationResult(e, attr, value);
return new ToolAttributeAction(r);
}
示例2: create
import com.cburch.logisim.tools.key.KeyConfigurationResult; //導入依賴的package包/類
public static Action create(KeyConfigurationResult results) {
return new ToolAttributeAction(results);
}
示例3: ToolAttributeAction
import com.cburch.logisim.tools.key.KeyConfigurationResult; //導入依賴的package包/類
private ToolAttributeAction(KeyConfigurationResult config) {
this.config = config;
this.oldValues = new HashMap<Attribute<?>, Object>(2);
}
示例4: create
import com.cburch.logisim.tools.key.KeyConfigurationResult; //導入依賴的package包/類
public static Action create(Tool tool, Attribute<?> attr, Object value) {
AttributeSet attrs = tool.getAttributeSet();
KeyConfigurationEvent e = new KeyConfigurationEvent(0, attrs, null, null);
KeyConfigurationResult r = new KeyConfigurationResult(e, attr, value);
return new ToolAttributeAction(r);
}
示例5: ToolAttributeAction
import com.cburch.logisim.tools.key.KeyConfigurationResult; //導入依賴的package包/類
private ToolAttributeAction(KeyConfigurationResult config) {
this.config = config;
this.oldValues = new HashMap<Attribute<?>,Object>(2);
}