Android UI for peer moderation.

This commit is contained in:
akwizgran
2013-03-12 18:02:21 +00:00
parent d3b742e14c
commit 0280ea2aa9
21 changed files with 281 additions and 52 deletions

View File

@@ -1,5 +1,6 @@
package net.sf.briar.api.crypto;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@@ -10,6 +11,6 @@ import com.google.inject.BindingAnnotation;
/** Annotation for injecting the executor for long-running crypto tasks. */
@BindingAnnotation
@Target({ PARAMETER })
@Target({ FIELD, PARAMETER })
@Retention(RUNTIME)
public @interface CryptoExecutor {}

View File

@@ -13,7 +13,7 @@ public class RatingChangedEvent extends DatabaseEvent {
this.rating = rating;
}
public AuthorId getAuthor() {
public AuthorId getAuthorId() {
return author;
}