~ubuntu-branches/ubuntu/maverick/electric/maverick

« back to all changes in this revision

Viewing changes to com/sun/electric/tool/user/ui/StatusBar.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:
41
41
import com.sun.electric.technology.Technology;
42
42
import com.sun.electric.technology.technologies.Generic;
43
43
import com.sun.electric.tool.Client;
44
 
import com.sun.electric.tool.user.Highlight2;
 
44
import com.sun.electric.tool.user.Highlight;
45
45
import com.sun.electric.tool.user.HighlightListener;
46
46
import com.sun.electric.tool.user.Highlighter;
47
47
import com.sun.electric.tool.user.UserInterfaceMain;
326
326
                {
327
327
                        // count the number of nodes and arcs selected
328
328
                        int nodeCount = 0, arcCount = 0, textCount = 0;
329
 
                        Highlight2 lastHighlight = null;
 
329
                        Highlight lastHighlight = null;
330
330
                        Highlighter highlighter = getHighlighter();
331
331
                        if (highlighter == null) {
332
332
                                fieldSelected.setText("  " + selectedMsg + "  ");
334
334
                                return;
335
335
                        }
336
336
                        NodeInst theNode = null;
337
 
                        for(Highlight2 h : highlighter.getHighlights())
 
337
                        for(Highlight h : highlighter.getHighlights())
338
338
                        {
339
339
                                if (h.isHighlightEOBJ())
340
340
                                {
434
434
         * Get a String describing the Highlight, to display in the
435
435
         * "Selected" part of the status bar.
436
436
         */
437
 
        private String getSelectedText(Highlight2 h)
 
437
        private String getSelectedText(Highlight h)
438
438
        {
439
439
                PortInst thePort;
440
440
                NodeInst theNode;