Package com.cburch.logisim.std.gates

Source Code of com.cburch.logisim.std.gates.Gates

/* Copyright (c) 2010, Carl Burch. License information is located in the
* com.cburch.logisim.Main source code and at www.cburch.com/logisim/. */

package com.cburch.logisim.std.gates;

import java.util.Arrays;
import java.util.List;

import com.cburch.logisim.tools.AddTool;
import com.cburch.logisim.tools.Library;
import com.cburch.logisim.tools.Tool;

public class Gates extends Library {
  private List<Tool> tools = null;

  public Gates() {
    tools = Arrays.asList(new Tool[] {
      new AddTool(NotGate.FACTORY),
      new AddTool(Buffer.FACTORY),
      new AddTool(AndGate.FACTORY),
      new AddTool(OrGate.FACTORY),
      new AddTool(NandGate.FACTORY),
      new AddTool(NorGate.FACTORY),
      new AddTool(XorGate.FACTORY),
      new AddTool(XnorGate.FACTORY),
      new AddTool(OddParityGate.FACTORY),
      new AddTool(EvenParityGate.FACTORY),
      new AddTool(ControlledBuffer.FACTORY_BUFFER),
      new AddTool(ControlledBuffer.FACTORY_INVERTER),
    });
  }

  @Override
  public String getName() { return "Gates"; }

  @Override
  public String getDisplayName() { return Strings.get("gatesLibrary"); }

  @Override
  public List<Tool> getTools() {
    return tools;
  }
}
TOP

Related Classes of com.cburch.logisim.std.gates.Gates

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.