~ubuntu-branches/ubuntu/wily/electric/wily-proposed

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/simulation/SimulationTool.java

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2015-08-12 13:15:54 UTC
  • mfrom: (1.2.7)
  • Revision ID: package-import@ubuntu.com-20150812131554-k4amekjrk0qw6cju
Tags: 9.06+dfsg-1
* Imported Upstream version 9.06+dfsg.
* Use --download-current-version for get-orig-source target.
* Declare compliance with Debian Policy 3.9.6.
* Vcs-Browser field: Switch to cgit.
* debian/control: Add all build-dependencies only to Build-Depends.
* Install ElectricIcon64x64.png icon. Drop debian/icons directory.
  Convert ElectricIcon64x64.png with imagemagick to electric.xpm at
  build-time.
* Update copyright years.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1348
1348
        /** Get the spice run program arguments, by default */
1349
1349
        public static String getFactorySpiceRunProgramArgs() { return cacheSpiceRunProgramArgs.getStringFactoryValue(); }
1350
1350
 
 
1351
        private static Pref cacheSpiceMaxCharsPerLine = Pref.makeIntPref("SpiceMaxCharsPerLine", tool.prefs, 512);
 
1352
        /** Get the max characters on a line of Spice output */
 
1353
        public static int getSpiceMaxCharsPerLine() { return cacheSpiceMaxCharsPerLine.getInt(); }
 
1354
        /** Set the max characters on a line of Spice output */
 
1355
        public static void setSpiceMaxCharsPerLine(int c) { cacheSpiceMaxCharsPerLine.setInt(c); }
 
1356
        /** Get the max characters on a line of Spice output, by default */
 
1357
        public static int getFactorySpiceMaxCharsPerLine() { return cacheSpiceMaxCharsPerLine.getIntFactoryValue(); }
 
1358
        
1351
1359
        private static Pref cacheSpicePartsLibrary = null;
1352
1360
        /**
1353
1361
         * Method to return the name of the current Spice parts library.
1698
1706
        public static void setSpiceInputPlaces(boolean b) { cacheSpiceInputPlaces.setBoolean(b); }
1699
1707
        /** Get whether or not we automatically place cell contents after importing Spice decks, by default */
1700
1708
        public static boolean isFactorySpiceInputPlaces() { return cacheSpiceInputPlaces.getBooleanFactoryValue(); }
 
1709
        
 
1710
        // Temporary solution until output parameters are verified
 
1711
        private static Pref cacheCDLLash = Pref.makeBooleanPref("CDLLash", tool.prefs, false);
 
1712
        /** Get whether or not we automatically place cell contents after importing Spice decks */
 
1713
        public static boolean isCDLLashOn() { return cacheCDLLash.getBoolean(); }
 
1714
        /** Set whether or not we automatically place cell contents after importing Spice decks */
 
1715
        public static void setCDLLashOn(boolean b) { cacheCDLLash.setBoolean(b); }
 
1716
        /** Get whether or not we automatically place cell contents after importing Spice decks, by default */
 
1717
        public static boolean isFactoryCDLLashOn() { return cacheCDLLash.getBooleanFactoryValue(); }
1701
1718
}