Uses of Class
com.sun.electric.database.CellRevision

Packages that use CellRevision
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.topology Package for connected Nodes and Arcs. 
com.sun.electric.technology Package for handling technology information. 
 

Uses of CellRevision in com.sun.electric.database
 

Fields in com.sun.electric.database declared as CellRevision
 CellRevision CellBackup.cellRevision
          Cell data.
static CellRevision[] CellRevision.NULL_ARRAY
           
 

Fields in com.sun.electric.database with type parameters of type CellRevision
static ImmutableArrayList<CellRevision> CellRevision.EMPTY_LIST
           
 

Methods in com.sun.electric.database that return CellRevision
 CellRevision Snapshot.getCellRevision(CellId cellId)
           
 CellRevision Snapshot.getCellRevision(int cellIndex)
           
 CellRevision CellRevision.with(ImmutableCell d, ImmutableNodeInst[] nodesArray, ImmutableArcInst[] arcsArray, ImmutableExport[] exportsArray)
          Creates a new instance of CellRevision which differs from this CellRevision.
 CellRevision CellRevision.withRevisionDate(long revisionDate)
          Creates a new instance of CellRevision which differs from this CellRevision by revision date.
 

Methods in com.sun.electric.database with parameters of type CellRevision
 boolean CellRevision.sameExports(CellRevision thatRevision)
           
 

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

Methods in com.sun.electric.database.hierarchy with parameters of type CellRevision
 void Cell.lowLevelMadeRevision(long revisionDate, java.lang.String userName, CellRevision oldRevision)
          Method to set this Cell's revision date and user name.
 

Uses of CellRevision in com.sun.electric.database.topology
 

Methods in com.sun.electric.database.topology with parameters of type CellRevision
 void Topology.updateArcs(CellRevision newRevision)
           
 

Uses of CellRevision in com.sun.electric.technology
 

Method parameters in com.sun.electric.technology with type arguments of type CellRevision
 void TechPool.correctSizesToDisk(java.util.List<CellRevision> cells, Version version, java.util.Map<Setting,java.lang.Object> projectSettings, boolean isJelib, boolean keepExtendOverMin)