Back to project page tape.
The source code is released under:
Apache License
If you think the Android project tape listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2012 Square, Inc. package com.squareup.tape.sample; public class ImageUploadSuccessEvent { public final String url; public ImageUploadSuccessEvent(String url) { this.url = url; } }