~ubuntu-branches/ubuntu/natty/java-gnome/natty

« back to all changes in this revision

Viewing changes to src/bindings/org/gnome/gtk/FontButton.java

  • Committer: Bazaar Package Importer
  • Author(s): Guillaume Mazoyer
  • Date: 2011-02-18 17:46:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20110218174652-mk7ajkt790es0jwr
Tags: 4.0.19-0ubuntu1
* New upstream release. (LP: #596252) (Forwarded: Debian: 588943)
* debian/control
  - Update dependencies version according to the upstream configure file.
  - Update Standards-Version to 3.9.1.
  - Sync JNI and JAR packages.
* debian/copyright
  - Update copyright to 2011.
* debian/patches/01_take_screenshots.diff
  - Fix patch to make doc screenshots works.
* debian/patches/02_javadoc_workaround.patch
  - Fix javadoc generation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
    public String getFontName() {
84
84
        return GtkFontButton.getFontName(this);
85
85
    }
 
86
 
 
87
    /**
 
88
     * Set the font name to be show in this FontButton.
 
89
     * 
 
90
     * @since 4.0.17
 
91
     */
 
92
    public void setFontName(String name) {
 
93
        GtkFontButton.setFontName(this, name);
 
94
    }
 
95
 
 
96
    /**
 
97
     * Whether the font size is to be shown on the FontButton.
 
98
     * 
 
99
     * @since 4.0.17
 
100
     */
 
101
    public void setShowSize(boolean setting) {
 
102
        GtkFontButton.setShowSize(this, setting);
 
103
    }
86
104
}