~ubuntu-branches/ubuntu/saucy/libjgraph-java/saucy

« back to all changes in this revision

Viewing changes to src/org/jgraph/graph/VertexRenderer.java

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2011-02-09 18:37:22 UTC
  • mfrom: (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110209183722-9so2kaovf53l6lx4
* New upstream release.
* debian/control: 
  - set Section to java
  - change build dependency from default-jdk-builddep to default-jdk
  - add ${misc:Depends} to Depends:.
* Change source URL in debian/copyright and debian/watch.
* Switch from dh_wraporig to repack.sh for repackaging.
* Switch to source format 3.0 (quilt).
* Set Standards-Version to 3.9.1 (no changes).
* Use debhelper 7 (debian/{rules,compat,control})
* Update patch and patch headers.
* debian/rules: don't build apidocs twice.
* debian/copyright: update years of copyright and formatting.
* Register API specification with doc-base system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        /** Cached value of whether the label is to be displayed */
63
63
        transient protected boolean labelEnabled;
64
64
 
 
65
        /**
 
66
         * Caches values of the colors to be used for painting the cell. The
 
67
         * values for gridColor, highlightColor and lockedHandleColor are updated
 
68
         * with the respective values from JGraph in getRendererComponent each
 
69
         * time a vertex is rendered. To render the selection border, the
 
70
         * highlightColor or the lockedHandleColor are used depending on the
 
71
         * focused state of the vertex. The gridColor is used to draw the
 
72
         * selection border if any child cells are selected. To change these
 
73
         * color values, please use the respective setters in JGraph.
 
74
         */
65
75
        transient protected Color gradientColor = null, gridColor = Color.black,
66
76
                        highlightColor = Color.black, lockedHandleColor = Color.black;
67
77