com.sun.electric.tool.io.output
Class Eagle

java.lang.Object
  extended by com.sun.electric.tool.io.output.Output
      extended by com.sun.electric.tool.io.output.Eagle

public class Eagle
extends Output

Class to write Eagle netlists.
Format:
ADD SO14 'IC1' R0 (0 0)
ADD SO16 'IC2' R0 (0 0)
ADD SO24L 'IC3' R0 (0 0)
;
Signal 'A0' 'IC1' '5' \
'IC2' '10' \
'IC3' '8' \
;
Signal 'A1' 'IC1' '6' \
'IC2' '11' \
'IC3' '5' \
;


Nested Class Summary
 
Nested classes/interfaces inherited from class com.sun.electric.tool.io.output.Output
Output.OutputCellInfo, Output.WriteJELIB
 
Field Summary
static Variable.Key PIN_KEY
          key of Variable holding pin information.
static Variable.Key PKG_TYPE_KEY
          key of Variable holding package type.
static Variable.Key REF_DES_KEY
          key of Variable holding node name.
 
Fields inherited from class com.sun.electric.tool.io.output.Output
dataOutputStream, filePath, printWriter, quiet
 
Method Summary
static void writeEagleFile(Cell cell, VarContext context, java.lang.String filePath)
          The main entry point for Eagle deck writing.
 
Methods inherited from class com.sun.electric.tool.io.output.Output
closeBinaryOutputStream, closeTextOutputStream, emitCopyright, exportCellCommand, getAreaToPrint, openBinaryOutputStream, openTextOutputStream, saveJelib, setContinuationString, setOutputWidth, writeCell, writeCell, writeLibrary, writePanicSnapshot, writeWidthLimited
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

REF_DES_KEY

public static final Variable.Key REF_DES_KEY
key of Variable holding node name.


PKG_TYPE_KEY

public static final Variable.Key PKG_TYPE_KEY
key of Variable holding package type.


PIN_KEY

public static final Variable.Key PIN_KEY
key of Variable holding pin information.

Method Detail

writeEagleFile

public static void writeEagleFile(Cell cell,
                                  VarContext context,
                                  java.lang.String filePath)
The main entry point for Eagle deck writing.

Parameters:
cell - the top-level cell to write.
context - the hierarchical context to the cell.
filePath - the disk file to create.