Back to project page PrincePolo.
The source code is released under:
GNU General Public License
If you think the Android project PrincePolo listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package se.agile.model; //from w w w . j av a2s . co m import se.agile.githubdata.Branch; public class BranchNotification extends Notification<Branch>{ public BranchNotification(Branch branch) { super(branch); super.setContentTitle("New branch"); super.setContentText("A new branch named \"" + branch.getName() + "\" has been created."); } }