⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pin.java

📁 The ElectricTM VLSI Design System is an open-source Electronic Design Automation (EDA) system that c
💻 JAVA
字号:
/* -*- tab-width: 4 -*- * * Electric(tm) VLSI Design System * * File: Pin.java * Written by: Jonathan Gainsley, Sun Microsystems. * * Copyright (c) 2003 Sun Microsystems and Static Free Software * * Electric(tm) is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * Electric(tm) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Electric(tm); see the file COPYING.  If not, write to * the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, Mass 02111-1307, USA. * * Created on November 11, 2003, 4:09 PM */package com.sun.electric.tool.logicaleffort;import java.util.ArrayList;/** * A Pin is connection between a network and an instance. * A Pin's direction is relative to the node (Instance, etc) it * connects to, not the network it connects to. * * <p>This should only be used in the context of the Logical Effort Tool. * * @author  gainsley */public class Pin {    // attributes    /** pin direction */                        private Dir dir;    /** logical effort */                       private float le;    /** name of pin */                          private String name;    // connectivity    /** reference to instance pin belongs to */ private Instance instance;    /** reference to net pin is part of */      private Net net;    /** name of net, used to create net */      private String netName;    /** wireNode in net's network that pin is connected to */    //                                            private WireNode wireNode;        /** Dir is a typesafe enum class that describes the direction of the pin */    protected static class Dir {        private final String name;        private Dir(String name) { this.name = name; }        public String toString() { return name; }        /** Input */		protected static final Dir INPUT = new Dir("input");        /** Output */        protected static final Dir OUTPUT = new Dir("output");        /** In-Out */        protected static final Dir INOUT = new Dir("inout");        /** no dir */        protected static final Dir NODIR = new Dir("nodir");    }	/**	 * Create new pin.	 * @param name name of pin	 * @param dir pin direction (Pin.INPUT, Pin.OUTPUT, Pin.INOUT, Pin.NODIR)	 * @param netName net pin is on	 */	protected Pin(String name, Dir dir, float le, String netName)	{		this.name = name;		this.dir = dir;        this.le = le;        this.netName = netName;	}        /** Return the direction of the pin. */    protected Dir getDir() { return dir; }    /** Return the name of the pin. */    protected String getName() { return name; }    /** Return the logical effort of the pin. */    protected float getLE() { return le; }    /** Return the net name */    protected String getNetName() { return netName; }    /** Return the instance that is attached to the pin. */    protected Instance getInstance() { return instance; }    /** Set the instance to which the pin is attached. */    protected void setInstance(Instance instance) { this.instance = instance; }        /** Return the net attached to pin. */    protected Net getNet() { return net; }    /** Set the net attached to pin. */    protected void setNet(Net net) { this.net = net; }        //----------------------------------UTILITY FUNCTIONS---------------------------------    /** Return list of specified pins */    protected static ArrayList<Pin> getPinListType(ArrayList<Pin> pins, Pin.Dir dir) {        ArrayList<Pin> typepins = new ArrayList<Pin>();        for (int i=0; i<pins.size(); i++) {            if ( ((Pin)pins.get(i)).getDir() == dir)                typepins.add((Pin)pins.get(i));        }        return typepins;    }        /** Return list of bidirectional pins; */    protected static ArrayList<Pin> getInoutPins(ArrayList<Pin> pins) {		return getPinListType(pins, Pin.Dir.INOUT);	}    /** Return list of input pins; */    protected static ArrayList<Pin> getInputPins(ArrayList<Pin> pins) {		return getPinListType(pins, Pin.Dir.INPUT);	}    /** Return list of output pins; */    protected static ArrayList<Pin> getOutputPins(ArrayList<Pin> pins) {		return getPinListType(pins, Pin.Dir.OUTPUT);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -