~ubuntu-branches/ubuntu/oneiric/electric/oneiric

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/extract/Extract.java

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2010-01-09 16:26:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100109162604-1ypvmy8ijmlc6oq7
Tags: 8.10-1
* New upstream version.
* debian/control
  - Add libjava3d-java and quilt build dependencies.
  - Update standards version to 3.8.3.
  - Add libjava3d-java as recommends to binary package.
* debian/rules
  - Use quilt patch system instead of simple patchsys.
  - Add java3d related jar files to DEB_JARS.
* debian/patches/*
  - Update as per current upstream source. Convert to quilt.
* debian/ant.properties
  - Do not disable 3D plugin anymore.
  - Use new property to disable compilation of OS X related classes.
* debian/wrappers/electric
  - Add java3d related jar files to runtime classpath.
* debian/README.source
  - Change text to the appropriate one for quilt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
212
212
         * @return true if the node extractor should flatten Cadence Pcells, by default.
213
213
         */
214
214
        public static boolean isFactoryFlattenPcells() { return cacheFlattenPcells.getBooleanFactoryValue(); }
 
215
 
 
216
        private static Pref cacheUsePureLayerNodes = Pref.makeBooleanPref("UsePureLayerNodes", Extract.tool.prefs, false);
 
217
        /**
 
218
         * Method to tell whether the node extractor should use pure-layer nodes for connectivity.
 
219
         * The alternative is to use pins and arcs.
 
220
         * The default is "false".
 
221
         * @return true if the node extractor should use pure-layer nodes for connectivity.
 
222
         */
 
223
        public static boolean isUsePureLayerNodes() { return cacheUsePureLayerNodes.getBoolean(); }
 
224
        /**
 
225
         * Method to set whether the node extractor should use pure-layer nodes for connectivity.
 
226
         * The alternative is to use pins and arcs.
 
227
         * @param a true if the node extractor should flatten Cadence Pcells.
 
228
         */
 
229
        public static void setUsePureLayerNodes(boolean a) { cacheUsePureLayerNodes.setBoolean(a); }
 
230
        /**
 
231
         * Method to tell whether the node extractor should use pure-layer nodes for connectivity by default.
 
232
         * The alternative is to use pins and arcs.
 
233
         * @return true if the node extractor should use pure-layer nodes for connectivity, by default.
 
234
         */
 
235
        public static boolean isFactoryUsePureLayerNodes() { return cacheUsePureLayerNodes.getBooleanFactoryValue(); }
215
236
}