Android Open Source - android-booster On Click






From Project

Back to project page android-booster.

License

The source code is released under:

Apache License

If you think the Android project android-booster listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 iWARES Solution Provider
 *// w  ww. j a va 2 s . c  om
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

/**
 * @file  src/com/iwares/lib/booster/annotation/OnClick.java
 * @author  Eric.Tsai
 *
 */

package com.iwares.lib.booster.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OnClick {

  int[] value();

}




Java Source Code List

com.iwares.lib.booster.annotation.IntentExtra.java
com.iwares.lib.booster.annotation.OnClickEx.java
com.iwares.lib.booster.annotation.OnClick.java
com.iwares.lib.booster.annotation.OnEditorActionEx.java
com.iwares.lib.booster.annotation.OnEditorAction.java
com.iwares.lib.booster.annotation.OnFocusChangedEx.java
com.iwares.lib.booster.annotation.OnFocusChanged.java
com.iwares.lib.booster.annotation.OnItemClickEx.java
com.iwares.lib.booster.annotation.OnItemClick.java
com.iwares.lib.booster.annotation.OnItemLongClickEx.java
com.iwares.lib.booster.annotation.OnItemLongClick.java
com.iwares.lib.booster.annotation.OnItemSelectedEx.java
com.iwares.lib.booster.annotation.OnItemSelected.java
com.iwares.lib.booster.annotation.OnLongClickEx.java
com.iwares.lib.booster.annotation.OnLongClick.java
com.iwares.lib.booster.annotation.OnTouchEx.java
com.iwares.lib.booster.annotation.OnTouch.java
com.iwares.lib.booster.annotation.SystemService.java
com.iwares.lib.booster.annotation.ViewByIdEx.java
com.iwares.lib.booster.annotation.ViewById.java
com.iwares.lib.booster.annotation.ViewFromLayoutEx.java
com.iwares.lib.booster.annotation.ViewFromLayout.java
com.iwares.lib.booster.core.Booster.java