Uses of Class
com.sun.electric.technology.TechPool

Packages that use TechPool
com.sun.electric.database Package for the Electric database. 
com.sun.electric.database.hierarchy Package for hierarchy (cell instances inside of cells). 
com.sun.electric.database.id Package for Ids in the Electric database. 
com.sun.electric.database.text Package for handling text. 
com.sun.electric.database.variable Package for handling variables. 
com.sun.electric.technology Package for handling technology information. 
com.sun.electric.tool.io.input   
 

Uses of TechPool in com.sun.electric.database
 

Fields in com.sun.electric.database declared as TechPool
 TechPool Snapshot.techPool
           
 TechPool CellBackup.techPool
          Technologies mapping
 

Methods in com.sun.electric.database that return TechPool
 TechPool Snapshot.getTechPool()
          Returns TechPool of this Snapshot
 

Methods in com.sun.electric.database with parameters of type TechPool
 boolean ImmutableArcInst.check(TechPool techPool)
           
static CellBackup CellBackup.newInstance(ImmutableCell d, TechPool techPool)
          Creates a new instance of CellBackup
 CellBackup CellBackup.with(ImmutableCell d, ImmutableNodeInst[] nodesArray, ImmutableArcInst[] arcsArray, ImmutableExport[] exportsArray, TechPool superPool)
          Creates a new instance of CellBackup which differs from this CellBackup.
 Snapshot Snapshot.withTechPool(TechPool techPool)
          Creates a new instance of Snapshot which differs from this Snapshot by TechPool.
 CellBackup CellBackup.withTechPool(TechPool techPool)
          Returns CellBackup which differs from this CellBackup by TechPool.
 

Uses of TechPool in com.sun.electric.database.hierarchy
 

Methods in com.sun.electric.database.hierarchy that return TechPool
 TechPool EDatabase.getTechPool()
          Returns TechPool of this database
 

Uses of TechPool in com.sun.electric.database.id
 

Methods in com.sun.electric.database.id that return TechPool
 TechPool IdManager.getInitialTechPool()
           
 

Uses of TechPool in com.sun.electric.database.text
 

Methods in com.sun.electric.database.text with parameters of type TechPool
static void Pref.importPrefs(java.lang.String fileName, TechPool techPool)
          Method used in regressions so it has to be public.
static void Pref.importPrefs(java.net.URL fileURL, TechPool techPool)
           
static void Pref.printAllPrefs(java.io.PrintStream out, TechPool techPool)
           
 

Uses of TechPool in com.sun.electric.database.variable
 

Methods in com.sun.electric.database.variable that return TechPool
 TechPool ElectricObject.getTechPool()
          Returns TechPool of this database
 

Uses of TechPool in com.sun.electric.technology
 

Methods in com.sun.electric.technology that return TechPool
 TechPool AbstractShapeBuilder.getTechPool()
           
static TechPool TechPool.read(IdReader reader)
          Reads TechPool from IdReader
 TechPool TechPool.restrict(java.util.BitSet techUsed)
          Returns restriction of this TechPool to specified subset of TechIds
 TechPool TechPool.restrict(java.util.BitSet techUsed, TechPool candidatePool)
          Returns restriction of this TechPool to specified subset of TechIds.
 TechPool TechPool.withTech(Technology tech)
          Returns new TechPool which differs from this TechPool by adding new technology
 

Methods in com.sun.electric.technology with parameters of type TechPool
 boolean TechPool.equals(TechPool that)
          Tests that two TechPools contains the same set of Tehnologies
 ArcProto[] PrimitivePort.getConnections(TechPool allTechs)
          Method to return the list of allowable connections on this PrimitivePort.
 TechPool TechPool.restrict(java.util.BitSet techUsed, TechPool candidatePool)
          Returns restriction of this TechPool to specified subset of TechIds.
 

Constructors in com.sun.electric.technology with parameters of type TechPool
Technology.MultiCutData(ImmutableNodeInst niD, TechPool techPool)
          Constructor to initialize for multiple cuts.
 

Uses of TechPool in com.sun.electric.tool.io.input
 

Methods in com.sun.electric.tool.io.input with parameters of type TechPool
static java.util.Map<Setting,java.lang.Object> JELIB.readProjectSettings(java.net.URL fileURL, FileType fileType, TechPool techPool, ErrorLogger errorLogger)